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

10 lines
201 B
PHP
Executable file

<?php
namespace b8\Exception\HttpException;
use b8\Exception\HttpException;
class ValidationException extends HttpException
{
protected $errorCode = 400;
protected $statusMessage = 'Bad Request';
}