forked from bitshares/python-bitshares
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexceptions.py
More file actions
49 lines (37 loc) · 1.11 KB
/
Copy pathexceptions.py
File metadata and controls
49 lines (37 loc) · 1.11 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
# -*- coding: utf-8 -*-
from graphenestorage.exceptions import WrongMasterPasswordException
from graphenecommon.exceptions import (
AccountDoesNotExistsException,
AssetDoesNotExistsException,
BlockDoesNotExistsException,
CommitteeMemberDoesNotExistsException,
InvalidAssetException,
InvalidMemoKeyException,
InvalidMessageSignature,
InvalidWifError,
KeyAlreadyInStoreException,
KeyNotFound,
MissingKeyError,
NoWalletException,
OfflineHasNoRPCException,
ProposalDoesNotExistException,
VestingBalanceDoesNotExistsException,
WalletExists,
WalletLocked,
WitnessDoesNotExistsException,
WorkerDoesNotExistsException,
WrongMemoKey,
GenesisBalanceDoesNotExistsException,
)
class RPCConnectionRequired(Exception):
"""An RPC connection is required."""
pass
class AccountExistsException(Exception):
"""The requested account already exists."""
pass
class ObjectNotInProposalBuffer(Exception):
"""Object was not found in proposal."""
pass
class HtlcDoesNotExistException(Exception):
"""HTLC object does not exist."""
pass