【发布时间】:2015-03-08 18:18:19
【问题描述】:
为什么我的异常没有被捕获?
try {
\Account::destroy($id);
return Redirect::to("/manager/account")
->with("success_message", "Item excluido com sucesso");
} catch (Exception $e) {
return Redirect::to("/manager/account/{$id}/edit")
->with("error_message", "Erro ao excluir item");
}
SQLSTATE[23000]:违反完整性约束:1451 无法删除或 更新父行:外键约束失败 (
imob_io.users,约束users_account_id_foreign外键 (account_id) 参考accounts(id)) (SQL: 删除accounts其中id= 2)
【问题讨论】:
-
尝试捕获
\Exception而不是Exception -
哎哟....!!命名空间!!谢谢