浏览代码

fix: 🐛 changed error log to be more generic

IceToast 3 年之前
父节点
当前提交
d81bd44253
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/Classes/Pterodactyl.php

+ 1 - 1
app/Classes/Pterodactyl.php

@@ -38,7 +38,7 @@ class Pterodactyl
     private static function getException(string $message = "", int $status = 0): Exception
     {
         if ($status == 404) {
-            return new Exception("Server does not exist on pterodactyl - " . $message, 404);
+            return new Exception("Ressource does not exist on pterodactyl - " . $message, 404);
         }
 
         if ($status == 403) {