17 lines
213 B
PHP
17 lines
213 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\Exception;
|
||
|
|
||
|
use Hyperf\Server\Exception\ServerException;
|
||
|
|
||
|
/**
|
||
|
* Class BaseException
|
||
|
*
|
||
|
* @package App\Exception
|
||
|
*/
|
||
|
class BaseException extends ServerException
|
||
|
{
|
||
|
|
||
|
}
|