laravel-websockets/src/WebSocket/Pusher/Exceptions/InvalidConnection.php

13 lines
249 B
PHP
Raw Normal View History

2018-11-23 23:06:28 +00:00
<?php
2018-11-27 15:07:29 +00:00
namespace BeyondCode\LaravelWebSockets\WebSocket\Pusher\Exceptions;
2018-11-23 23:06:28 +00:00
2018-11-26 23:13:22 +00:00
class InvalidConnection extends PusherException
2018-11-23 23:06:28 +00:00
{
public function __construct()
{
$this->message = 'Invalid Connection';
2018-11-25 23:47:47 +00:00
2018-11-23 23:06:28 +00:00
$this->code = 4009;
}
}