2015-08-20 11:27:15 -04:00
|
|
|
class PriceDisagreementError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class DuplicateStreamHashError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class DownloadCanceledError(Exception):
|
|
|
|
pass
|
|
|
|
|
2017-09-27 17:23:41 -04:00
|
|
|
|
|
|
|
class DownloadSDTimeout(Exception):
|
|
|
|
def __init__(self, download):
|
|
|
|
Exception.__init__(self, 'Failed to download sd blob {} within timeout'.format(download))
|
|
|
|
self.download = download
|
|
|
|
|
|
|
|
|
2017-06-20 18:56:08 -04:00
|
|
|
class DownloadTimeoutError(Exception):
|
|
|
|
def __init__(self, download):
|
|
|
|
Exception.__init__(self, 'Failed to download {} within timeout'.format(download))
|
|
|
|
self.download = download
|
2015-08-20 11:27:15 -04:00
|
|
|
|
2017-09-27 17:23:41 -04:00
|
|
|
|
|
|
|
class DownloadDataTimeout(Exception):
|
|
|
|
def __init__(self, download):
|
|
|
|
Exception.__init__(self, 'Failed to download data blobs for sd hash '
|
|
|
|
'{} within timeout'.format(download))
|
|
|
|
self.download = download
|
|
|
|
|
|
|
|
|
2015-08-20 11:27:15 -04:00
|
|
|
class RequestCanceledError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-07-07 16:37:35 -04:00
|
|
|
class NegativeFundsError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class NullFundsError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-08-20 11:27:15 -04:00
|
|
|
class InsufficientFundsError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class ConnectionClosedBeforeResponseError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2016-07-25 22:46:04 -04:00
|
|
|
class KeyFeeAboveMaxAllowed(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-02-27 20:18:57 -05:00
|
|
|
class InvalidExchangeRateResponse(Exception):
|
|
|
|
def __init__(self, source, reason):
|
|
|
|
Exception.__init__(self, 'Failed to get exchange rate from {}:{}'.format(source, reason))
|
|
|
|
self.source = source
|
|
|
|
self.reason = reason
|
|
|
|
|
|
|
|
|
2015-08-20 11:27:15 -04:00
|
|
|
class UnknownNameError(Exception):
|
|
|
|
def __init__(self, name):
|
2016-11-08 11:21:33 -05:00
|
|
|
Exception.__init__(self, 'Name {} is unknown'.format(name))
|
2015-08-20 11:27:15 -04:00
|
|
|
self.name = name
|
|
|
|
|
2015-09-01 17:49:26 -04:00
|
|
|
|
2017-06-09 13:39:55 -04:00
|
|
|
class UnknownClaimID(Exception):
|
|
|
|
def __init__(self, claim_id):
|
|
|
|
Exception.__init__(self, 'Claim {} is unknown'.format(claim_id))
|
|
|
|
self.claim_id = claim_id
|
|
|
|
|
|
|
|
|
|
|
|
class UnknownURI(Exception):
|
|
|
|
def __init__(self, uri):
|
|
|
|
Exception.__init__(self, 'URI {} cannot be resolved'.format(uri))
|
|
|
|
self.name = uri
|
|
|
|
|
2017-07-17 11:55:24 -04:00
|
|
|
class UnknownOutpoint(Exception):
|
|
|
|
def __init__(self, outpoint):
|
|
|
|
Exception.__init__(self, 'Outpoint {} cannot be resolved'.format(outpoint))
|
|
|
|
self.outpoint = outpoint
|
2017-06-09 13:39:55 -04:00
|
|
|
|
2016-11-30 09:41:01 -06:00
|
|
|
class InvalidName(Exception):
|
|
|
|
def __init__(self, name, invalid_characters):
|
2016-07-28 18:48:29 -04:00
|
|
|
self.name = name
|
2016-11-30 09:41:01 -06:00
|
|
|
self.invalid_characters = invalid_characters
|
|
|
|
Exception.__init__(
|
|
|
|
self, 'URI contains invalid characters: {}'.format(','.join(invalid_characters)))
|
2016-07-28 18:48:29 -04:00
|
|
|
|
|
|
|
|
2015-09-01 17:49:26 -04:00
|
|
|
class UnknownStreamTypeError(Exception):
|
|
|
|
def __init__(self, stream_type):
|
|
|
|
self.stream_type = stream_type
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return repr(self.stream_type)
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidStreamDescriptorError(Exception):
|
|
|
|
pass
|
|
|
|
|
2015-08-20 11:27:15 -04:00
|
|
|
|
|
|
|
class InvalidStreamInfoError(Exception):
|
2016-10-31 13:53:45 -04:00
|
|
|
def __init__(self, name, stream_info):
|
2016-11-04 15:09:40 -05:00
|
|
|
msg = '{} has claim with invalid stream info: {}'.format(name, stream_info)
|
2016-11-01 16:35:44 -04:00
|
|
|
Exception.__init__(self, msg)
|
2015-08-20 11:27:15 -04:00
|
|
|
self.name = name
|
2016-10-31 13:53:45 -04:00
|
|
|
self.stream_info = stream_info
|
2015-08-20 11:27:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
class MisbehavingPeerError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidDataError(MisbehavingPeerError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class NoResponseError(MisbehavingPeerError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidResponseError(MisbehavingPeerError):
|
2015-09-04 16:22:02 -04:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class NoSuchBlobError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-02-15 23:39:17 -05:00
|
|
|
class NoSuchStreamHash(Exception):
|
2015-09-16 16:27:46 -04:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-02-16 09:09:21 -05:00
|
|
|
class NoSuchSDHash(Exception):
|
|
|
|
"""
|
|
|
|
Raised if sd hash is not known
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2015-09-16 16:27:46 -04:00
|
|
|
class InvalidBlobHashError(Exception):
|
2016-09-20 16:58:30 -04:00
|
|
|
pass
|
|
|
|
|
2016-09-27 13:52:44 -04:00
|
|
|
|
2016-09-20 16:58:30 -04:00
|
|
|
class InvalidHeaderError(Exception):
|
|
|
|
pass
|
|
|
|
|
2016-10-14 18:25:37 -04:00
|
|
|
|
2016-09-20 16:58:30 -04:00
|
|
|
class InvalidAuthenticationToken(Exception):
|
2016-09-21 21:36:06 -04:00
|
|
|
pass
|
|
|
|
|
2016-10-14 18:25:37 -04:00
|
|
|
|
2016-09-27 13:52:44 -04:00
|
|
|
class NegotiationError(Exception):
|
2016-10-14 18:25:37 -04:00
|
|
|
pass
|
2017-07-20 03:45:07 +05:30
|
|
|
|
|
|
|
class InvalidCurrencyError(Exception):
|
|
|
|
def __init__(self, currency):
|
|
|
|
self.currency = currency
|
|
|
|
Exception.__init__(
|
|
|
|
self, 'Invalid currency: {} is not a supported currency.'.format(currency))
|
2018-02-09 11:29:37 -05:00
|
|
|
|
|
|
|
class NoSuchDirectoryError(Exception):
|
|
|
|
def __init__(self, directory):
|
|
|
|
self.directory = directory
|
|
|
|
Exception.__init__(self, 'No such directory {}'.format(directory))
|