类 MissingDatasourceConfigException
当找不到数据源配置时抛出的异常类
属性摘要
-
$_attributes protected
数组
从构造函数传递并将在显示开发错误时在视图中提供的一组属性。
-
$_defaultCode protected
整数
默认异常代码
-
$_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 之前的异常。