php-censor/src/B8Framework/Exception/HttpException/NotFoundException.php
2016-06-23 21:18:41 +06:00

10 lines
197 B
PHP
Executable file

<?php
namespace b8\Exception\HttpException;
use b8\Exception\HttpException;
class NotFoundException extends HttpException
{
protected $errorCode = 404;
protected $statusMessage = 'Not Found';
}