From d81bd442534e8c2f9dc132077733b82815a4b241 Mon Sep 17 00:00:00 2001 From: IceToast Date: Tue, 8 Feb 2022 09:30:42 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20changed=20error=20log=20t?= =?UTF-8?q?o=20be=20more=20generic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Classes/Pterodactyl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Classes/Pterodactyl.php b/app/Classes/Pterodactyl.php index 276fcb02..bee54b71 100644 --- a/app/Classes/Pterodactyl.php +++ b/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) {