niucloud-admin/niucloud/extend/exception/CaptchaException.php
全栈小学生 0e47055ccb v1.0.0-beta.1
2023-04-15 17:12:49 +08:00

20 lines
381 B
PHP

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