类 PersistenceFailedException
当严格保存或删除失败时使用
命名空间: Cake\ORM\Exception
属性概要
-
$_attributes protected
数组
从构造函数传入的属性数组,在显示开发错误时在视图中可用。
-
$_defaultCode protected
整数
默认异常代码
-
$_entity protected
Cake\Datasource\EntityInterface
持久化操作失败的实体
-
$_messageTemplate protected
字符串
包含 sprintf() 后的属性的模板字符串。
方法概要
-
__construct() public
构造函数。
-
getAttributes() public
获取传入的属性
-
getEntity() public
获取传入的实体
方法详情
__construct() ¶ public
__construct(Cake\Datasource\EntityInterface $entity, list<string>|string $message, int|null $code = null, Throwable|null $previous = null)
构造函数。
参数
-
Cake\Datasource\EntityInterface
$entity 持久化操作失败的实体
-
list<string>|string
$message 错误消息字符串,或一个在视图中可用的属性数组,并用 sprintf() 格式化为 Exception::$_messageTemplate
-
int|null
$code 可选 错误代码,也是错误的 HTTP 状态代码。
-
Throwable|null
$previous 可选 之前的异常。
getEntity() ¶ public
getEntity(): Cake\Datasource\EntityInterface
获取传入的实体
返回值
Cake\Datasource\EntityInterface