forked from 0xPolygonHermez/zkevm-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.go
73 lines (62 loc) · 2.02 KB
/
errors.go
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package types
import "fmt"
const (
// DefaultErrorCode rpc default error code
DefaultErrorCode = -32000
// RevertedErrorCode error code for reverted txs
RevertedErrorCode = 3
// InvalidRequestErrorCode error code for invalid requests
InvalidRequestErrorCode = -32600
// NotFoundErrorCode error code for not found objects
NotFoundErrorCode = -32601
// InvalidParamsErrorCode error code for invalid parameters
InvalidParamsErrorCode = -32602
// ParserErrorCode error code for parsing errors
ParserErrorCode = -32700
)
var (
// ErrBatchRequestsDisabled returned by the server when a batch request
// is detected and the batch requests are disabled via configuration
ErrBatchRequestsDisabled = fmt.Errorf("batch requests are disabled")
// ErrBatchRequestsLimitExceeded returned by the server when a batch request
// is detected and the number of requests are greater than the configured limit.
ErrBatchRequestsLimitExceeded = fmt.Errorf("batch requests limit exceeded")
)
// Error interface
type Error interface {
Error() string
ErrorCode() int
ErrorData() []byte
}
// RPCError represents an error returned by a JSON RPC endpoint.
type RPCError struct {
err string
code int
data []byte
}
// NewRPCError creates a new error instance to be returned by the RPC endpoints
func NewRPCError(code int, err string, args ...interface{}) *RPCError {
return NewRPCErrorWithData(code, err, nil, args...)
}
// NewRPCErrorWithData creates a new error instance with data to be returned by the RPC endpoints
func NewRPCErrorWithData(code int, err string, data []byte, args ...interface{}) *RPCError {
var errMessage string
if len(args) > 0 {
errMessage = fmt.Sprintf(err, args...)
} else {
errMessage = err
}
return &RPCError{code: code, err: errMessage, data: data}
}
// Error returns the error message.
func (e RPCError) Error() string {
return e.err
}
// ErrorCode returns the error code.
func (e *RPCError) ErrorCode() int {
return e.code
}
// ErrorData returns the error data.
func (e *RPCError) ErrorData() []byte {
return e.data
}