类 MissingDriverException
类 MissingDriverException
命名空间: Cake\Database\Exception
属性概要
-
$_attributes protected
array
从构造函数传递进来的属性数组,并在显示开发错误时在视图中提供。
-
$_defaultCode protected
int
默认异常代码
-
$_messageTemplate protected
string
使用属性 sprintf() 格式化的模板字符串。
方法概要
-
__construct() public
构造函数。
-
getAttributes() public
获取传递进来的属性
方法详情
__construct() ¶ public
__construct(array|string $message = '', int|null $code = null, Throwable|null $previous = null)
构造函数。
允许您创建被视为框架错误的异常,并在调试模式关闭时禁用。
参数
-
array|string
$message 可选 错误消息字符串,或在视图中提供并使用 sprintf() 格式化到 Exception::$_messageTemplate 的属性数组。
-
int|null
$code 可选 错误代码
-
Throwable|null
$previous 可选 之前的异常。