niucloud-admin/niucloud/core/exception/ServerException.php
全栈小学生 754f840005 1
2023-05-31 11:20:35 +08:00

18 lines
316 B
PHP

<?php
namespace core\exception;
use RuntimeException;
use Throwable;
/**
* 服务器异常处理类
*/
class ServerException extends RuntimeException
{
public function __construct($message = "", $code = 409, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}