php-censor/src/PHPCensor/Exception/HttpException/NotAuthorizedException.php
2018-03-09 13:46:18 +07:00

19 lines
301 B
PHP

<?php
namespace PHPCensor\Exception\HttpException;
use PHPCensor\Exception\HttpException;
class NotAuthorizedException extends HttpException
{
/**
* @var integer
*/
protected $errorCode = 401;
/**
* @var string
*/
protected $statusMessage = 'Not Authorized';
}