hyperf-chat/app/Exception/BaseException.php

17 lines
213 B
PHP
Raw Permalink Normal View History

2021-07-16 22:15:49 +08:00
<?php
declare(strict_types=1);
namespace App\Exception;
use Hyperf\Server\Exception\ServerException;
/**
* Class BaseException
*
* @package App\Exception
*/
class BaseException extends ServerException
{
}