hyperf-chat/app/Exception/ValidateException.php

17 lines
216 B
PHP

<?php
declare(strict_types=1);
namespace App\Exception;
use Hyperf\Server\Exception\ServerException;
/**
* 验证器异常类
*
* @package App\Exception
*/
class ValidateException extends ServerException
{
}