运行'php artisan'命令时的自定义ErrorException消息

时间:2019-05-22 15:45:36

标签: laravel

我正在尝试运行php artisan命令时更改异常错误消息

工匠指挥部:

php artisan exportdata {$brand}

命令代码:

 $brand = Brand::where('brand_name', $input_brand)->first();

运行命令时终端显示错误

  

ErrorException:尝试获取非对象的属性“自行车”

我确实尝试过奔跑,但这没用 错误捕获代码:

try {
    // Code;
} catch (Exception $e) {
    $this->error('This brand does not exist');
}

但是完整的ErrorException方法仍在终端中显示。

谢谢。

0 个答案:

没有答案