From f76109347a8d2dae498dfc11502f3d311dbb125e Mon Sep 17 00:00:00 2001 From: netkas Date: Wed, 29 Jan 2025 15:42:19 -0500 Subject: [PATCH] Updated error codes --- src/Socialbox/Enums/StandardError.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Socialbox/Enums/StandardError.php b/src/Socialbox/Enums/StandardError.php index 3c0fbc6..804f396 100644 --- a/src/Socialbox/Enums/StandardError.php +++ b/src/Socialbox/Enums/StandardError.php @@ -13,8 +13,9 @@ enum StandardError : int case BAD_REQUEST = -102; case FORBIDDEN = -103; case UNAUTHORIZED = -104; - case RESOLUTION_FAILED = -105; - case CRYPTOGRAPHIC_ERROR = -106; + case NOT_FOUND = -105; + case RESOLUTION_FAILED = -106; + case CRYPTOGRAPHIC_ERROR = -107; // RPC Errors case RPC_METHOD_NOT_FOUND = -1000;