php-censor/src/B8Framework/Exception/HttpException/NotFoundException.php
2017-01-14 16:12:53 +07:00

12 lines
209 B
PHP

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