12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace catcher\exceptions;
|
|
|
|
use catcher\Code;
|
|
|
|
class ValidateFailedException extends CatchException
|
|
{
|
|
protected $code = Code::VALIDATE_FAILED;
|
|
}
|