hyperf-chat/app/Exception/ValidateException.php

24 lines
498 B
PHP

<?php
/**
* This is my open source code, please do not use it for commercial applications.
* For the full copyright and license information,
* please view the LICENSE file that was distributed with this source code
*
* @author Yuandong<837215079@qq.com>
* @link https://github.com/gzydong/hyperf-chat
*/
namespace App\Exception;
use Hyperf\Server\Exception\ServerException;
/**
* 验证器异常类
*
* @package App\Exception
*/
class ValidateException extends ServerException
{
}