首页 > 解决方案 > laravel 无法处理异常,catch 块未执行

问题描述

我正在创建一个在远程服务器上执行各种操作的 SSH Bot。这些服务器的用户名和密码由用户提供。

但是当用户提供错误的用户名或密码或错误的服务器 IP 地址时,它会抛出ErrorException异常。

我想处理该异常并将错误消息存储在数据库中。而不是向用户展示它。

这是我的代码

try {
                $pending_server->console_output = $this->setupDNS($pending_server->toArray());
                $pending_server->status = 'Configured';
            } catch (ErrorException $e) {
                $pending_server->console_output = $e->getMessage;
                $pending_server->status = 'Failed';
                $pending_server->save();
            }

在数据库$pending_server中是数据库模型。该setupDNS方法正在引发异常。因此,如果出现异常,我想将错误消息作为输出存储在数据库中。但是 catch 块根本没有执行,并且脚本的执行停止了。

标签: phpexception-handlinglaravel-5.6

解决方案


只需将“\”放在 ErrorException 之前。例如:

try {
                $pending_server->console_output = $this->setupDNS($pending_server->toArray());
                $pending_server->status = 'Configured';
            } catch (\ErrorException $e) {
                $pending_server->console_output = $e->getMessage;
                $pending_server->status = 'Failed';
                $pending_server->save();
            }

推荐阅读