laravel-websockets/src/LaravelEcho/Pusher/Exceptions/InvalidConnectionException.php

12 lines
259 B
PHP
Raw Normal View History

2018-11-23 23:06:28 +00:00
<?php
namespace BeyondCode\LaravelWebSockets\LaravelEcho\Pusher\Exceptions;
class InvalidConnectionException extends PusherException
{
public function __construct()
{
$this->message = 'Invalid Connection';
$this->code = 4009;
}
}