laravel-websockets/src/Server/Exceptions/UnknownAppKey.php

18 lines
345 B
PHP
Raw Normal View History

2020-09-10 19:59:26 +00:00
<?php
namespace BeyondCode\LaravelWebSockets\Server\Exceptions;
class UnknownAppKey extends WebSocketException
{
/**
* Initalize the exception.
*
* @param string $appKey
* @return void
*/
public function __construct($appKey)
{
$this->trigger("Could not find app key `{$appKey}`.", 4001);
}
}