mirror of
https://gitee.com/zhc02/timely_service.git
synced 2025-06-25 04:07:07 +08:00
8 lines
130 B
PHP
8 lines
130 B
PHP
<?php
|
|
namespace exception;
|
|
|
|
class ValidatorException extends BaseException
|
|
{
|
|
const BAD_PARAMS = 9001; //参数错误
|
|
}
|