全栈小学生 0e47055ccb v1.0.0-beta.1
2023-04-15 17:12:49 +08:00

21 lines
370 B
PHP

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