-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherr-4XXX.go
More file actions
38 lines (36 loc) · 1023 Bytes
/
err-4XXX.go
File metadata and controls
38 lines (36 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Project: Application Return Code Registry
* Filename: /err-4XXX.go
* Created Date: Tuesday September 5th 2023 04:55:59 +0800
* Author: Sallehuddin Abdul Latif (sallehuddin@berrypay.com)
* Company: BerryPay (M) Sdn. Bhd.
* --------------------------------------
* Last Modified: Tuesday June 4th 2024 12:35:05 +0800
* Modified By: Sallehuddin Abdul Latif (sallehuddin@berrypay.com)
* --------------------------------------
* Copyright (c) 2023 BerryPay (M) Sdn. Bhd.
*/
package returncode
// Provider Service Error
const (
// General partner service operation Error
ERR4000 int = iota + 4000
// API invalid credential
ERR4001
// API call timeout
ERR4002
// API call failure
ERR4003
// API call response payload processing error
ERR4004
// API call response payload signature verification error
ERR4005
// API call method not allowed
ERR4006
// API call response resource not found
ERR4007
// API call request requirement not met
ERR4008
// API call failed with empty response
ERR4009
)