21 lines
376 B
PHP
21 lines
376 B
PHP
<?php
|
|
|
|
namespace Laravel\Reverb\Protocols\Pusher\Exceptions;
|
|
|
|
class InvalidOrigin extends PusherException
|
|
{
|
|
/**
|
|
* The error code associated with the exception.
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $code = 4009;
|
|
|
|
/**
|
|
* The error message associated with the exception.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $message = 'Origin not allowed';
|
|
}
|