forked from blckchnd/python-bitshares
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexceptions.py
More file actions
96 lines (66 loc) · 1.82 KB
/
Copy pathexceptions.py
File metadata and controls
96 lines (66 loc) · 1.82 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
class WalletExists(Exception):
""" A wallet has already been created and requires a password to be
unlocked by means of :func:`bitshares.wallet.unlock`.
"""
pass
class AccountExistsException(Exception):
""" The requested account already exists
"""
pass
class AccountDoesNotExistsException(Exception):
""" The account does not exist
"""
pass
class AssetDoesNotExistsException(Exception):
""" The asset does not exist
"""
pass
class InvalidAssetException(Exception):
""" The used asset is invalid in this context
"""
pass
class BlockDoesNotExistsException(Exception):
""" The block does not exist
"""
pass
class WitnessDoesNotExistsException(Exception):
""" The witness does not exist
"""
pass
class CommitteeMemberDoesNotExistsException(Exception):
""" Committee Member does not exist
"""
pass
class VestingBalanceDoesNotExistsException(Exception):
""" Vesting Balance does not exist
"""
pass
class ProposalDoesNotExistException(Exception):
""" The proposal does not exist
"""
pass
class InsufficientAuthorityError(Exception):
""" The transaction requires signature of a higher authority
"""
pass
class MissingKeyError(Exception):
""" A required key couldn't be found in the wallet
"""
pass
class InvalidWifError(Exception):
""" The provided private Key has an invalid format
"""
pass
class NoWalletException(Exception):
""" No Wallet could be found, please use :func:`bitshares.wallet.create` to
create a new wallet
"""
pass
class WrongMasterPasswordException(Exception):
""" The password provided could not properly unlock the wallet
"""
pass
class WorkerDoesNotExistsException(Exception):
""" Worker does not exist
"""
pass