test_lgq/niucloud/core/exception/AuthException.php
2024-01-24 17:36:08 +08:00

19 lines
316 B
PHP

<?php
namespace core\exception;
use RuntimeException;
use Throwable;
/**
* 授权错误异常处理类
*/
class AuthException extends RuntimeException
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}