Browse Source

update: exception message

v2board 2 years ago
parent
commit
6dd509d73e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Exceptions/Handler.php

+ 1 - 1
app/Exceptions/Handler.php

@@ -54,7 +54,7 @@ class Handler extends ExceptionHandler
     public function render($request, Throwable $exception)
     {
         if ($exception instanceof ViewException) {
-            abort(500, "主题渲染失败。如更新主题参数参数发生变化请重新配置主题后再试。");
+            abort(500, "主题渲染失败。如更新主题,参数可能发生变化请重新配置主题后再试。");
         }
         return parent::render($request, $exception);
     }