* Portions created by the Initial Developer are Copyright (C) 2008-2025 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Mark J Crane * Tim Fry */ /** * Description of websocket_exception * * @author Tim Fry */ class websocket_exception extends \Exception { public function __construct(string $message = "Websocket exception has occurred", int $code = 500, ?\Throwable $previous = null) { return parent::__construct($message, $code, $previous); } }