类 PageOutOfBoundsException
当请求的页码不存在时引发的异常。
属性摘要
-
$_attributes protected
数组
从构造函数中传入的属性数组,在显示开发错误时可在视图中使用。
-
$_defaultCode protected
int
默认异常代码
-
$_messageTemplate protected
字符串
包含属性 sprintf() 的模板字符串。
方法摘要
-
__construct() public
构造函数。
-
getAttributes() public
获取传入的属性
方法详情
__construct() ¶ public
__construct(array|string $message = '', int|null $code = null, Throwable|null $previous = null)
构造函数。
允许您创建被视为框架错误的异常,并在关闭调试模式时禁用。
参数
-
array|string
$message optional 错误消息字符串,或将在视图中使用并 sprintf() 到 Exception::$_messageTemplate 的属性数组
-
int|null
$code optional 错误代码
-
Throwable|null
$previous optional 之前的异常。