hyperf-chat/app/Exception/ValidateException.php

26 lines
530 B
PHP
Raw Normal View History

2020-11-04 11:57:16 +08:00
<?php
2020-12-26 21:33:40 +08:00
/**
*
* 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
*/
2020-11-04 11:57:16 +08:00
namespace App\Exception;
use Hyperf\Server\Exception\ServerException;
/**
* 验证器异常类
*
* Class ValidateException
* @package App\Exception
*/
class ValidateException extends ServerException
{
}