forked from coccoinomane/web3cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexceptions.py
More file actions
101 lines (52 loc) · 1.72 KB
/
Copy pathexceptions.py
File metadata and controls
101 lines (52 loc) · 1.72 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
class Web3CoreError(Exception):
"""Generic errors"""
pass
class NotSupportedYet(Web3CoreError):
"""When a feature is not supported yet"""
pass
class RecordNotFound(Web3CoreError):
"""When a record from the database is not found"""
pass
class ChainNotFound(RecordNotFound):
"""When a chain name is not found in the database"""
pass
class ChainNotResolved(Web3CoreError):
"""When a string cannot be resolved to a chain"""
pass
class AddressIsInvalid(Web3CoreError):
"""When an address 0x... is not in a valid EVM format"""
pass
class AddressNotResolved(Web3CoreError):
"""When a string cannot be resolved to a valid address"""
pass
class KeyIsInvalid(Web3CoreError):
"""When a non-valid private key is provided"""
pass
class RpcIsInvalid(Web3CoreError):
"""When a non-valid RPC is used"""
pass
class RpcNotFound(RecordNotFound):
"""When an RPC cannot be found in the DB"""
pass
class SignerNotFound(RecordNotFound):
"""When a signer does not exist in the DB"""
pass
class TxNotFound(Web3CoreError):
"""When a transaction hash is not found in the database"""
pass
class TxIsInvalid(Web3CoreError):
"""When a transatction hash is not in a valid EVM format"""
pass
class ContractNotFound(RecordNotFound):
"""When a contract name is not found in the database"""
pass
class ContractIsInvalid(Web3CoreError):
"""When a contract address or other field is not valid
EVM format"""
pass
class ContractAbiNotResolved(Web3CoreError):
"""When the ABI of a contract cannot be found"""
pass
class AbiOverflow(Web3CoreError):
"""When you pass an int or unit too big for the ABI type"""
pass