Skip to content

Commit

Permalink
fix: more states
Browse files Browse the repository at this point in the history
  • Loading branch information
brokeyourbike committed Nov 27, 2023
1 parent 4d0e149 commit 9c7d23b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/Enums/ErrorCodeEnum.php
Expand Up @@ -14,7 +14,15 @@
enum ErrorCodeEnum: string
{
case SUCCESS = '00';
case FORMAT_ERROR = '30';
case SYSTEM_MALFUNCTION = '96';
case PROCESSED = '06';
case RECIPIENT_ACCOUNT_INVALID = '07';
case BENEFICIARY_AND_ORIGINAL_AMOUNT_MUST_BE_SAME = '23';
case FORMAT_ERROR = '30';
case UNPROCESSIBLE_REQUEST = '92';
case MISMATCHED_OR_NOT_TRANSFERABLE_CURRENCIES = '93';
case CANNOT_TRANSFER_NGN_TO_A_NON_NGN_ACCOUNT = '94';
case HASH_VALUE_INVALID = '95';
case DUPLICATE_TRANSACTION_PIN = '96';
case MERCHANT_CODE_INVALID = '97';
case OTHERS_TYPES_OF_ERRORS = '99';
}

0 comments on commit 9c7d23b

Please sign in to comment.