diff --git a/src/Client.php b/src/Client.php index 8f22cbe..8ec59ed 100644 --- a/src/Client.php +++ b/src/Client.php @@ -51,7 +51,7 @@ class Client{ if(in_array($status_code,[200,201])){ return json_decode($result); }else{ - throw new Exception("API $status_code Code: ".$result); + throw new \Exception("API $status_code Code: ".$result); } } }