laravel-websockets/src/WebSockets/Exceptions/InvalidSignature.php

13 lines
244 B
PHP
Raw Normal View History

2018-11-22 09:54:51 +00:00
<?php
2018-11-27 15:21:31 +00:00
namespace BeyondCode\LaravelWebSockets\WebSockets\Exceptions;
2018-11-22 09:54:51 +00:00
2018-11-27 15:21:31 +00:00
class InvalidSignature extends WebSocketException
2018-11-22 09:54:51 +00:00
{
public function __construct()
{
$this->message = 'Invalid Signature';
2018-11-25 23:47:47 +00:00
2018-11-22 09:54:51 +00:00
$this->code = 4009;
}
}