test_lgq/niucloud/core/exception/ServerException.php

19 lines
317 B
PHP
Raw Permalink Normal View History

2024-01-24 17:36:08 +08:00
<?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);
}
}