8 lines
123 B
PHP
8 lines
123 B
PHP
<?php
|
|
namespace catcher\exceptions;
|
|
|
|
class ValidateFailedException extends CatchException
|
|
{
|
|
protected $code = 10001;
|
|
}
|