2020-11-04 11:57:16 +08:00
|
|
|
<?php
|
2021-09-11 12:41:28 +08:00
|
|
|
declare(strict_types=1);
|
2021-04-20 16:30:57 +08:00
|
|
|
|
2020-11-04 11:57:16 +08:00
|
|
|
namespace App\Exception;
|
|
|
|
|
|
|
|
use Hyperf\Server\Exception\ServerException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 验证器异常类
|
|
|
|
*
|
|
|
|
* @package App\Exception
|
|
|
|
*/
|
|
|
|
class ValidateException extends ServerException
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|