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

19 lines
291 B
PHP

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