2015-08-20 17:27:15 +02:00
|
|
|
class PriceDisagreementError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class DuplicateStreamHashError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class DownloadCanceledError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class RequestCanceledError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class InsufficientFundsError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class ConnectionClosedBeforeResponseError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2016-07-26 04:46:04 +02:00
|
|
|
class KeyFeeAboveMaxAllowed(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-08-20 17:27:15 +02:00
|
|
|
class UnknownNameError(Exception):
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
|
2015-09-01 23:49:26 +02:00
|
|
|
def __str__(self):
|
|
|
|
return repr(self.name)
|
|
|
|
|
|
|
|
|
2016-07-29 00:48:29 +02:00
|
|
|
class InvalidNameError(Exception):
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return repr(self.name)
|
|
|
|
|
|
|
|
|
2015-09-01 23:49:26 +02: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 17:27:15 +02:00
|
|
|
|
|
|
|
class InvalidStreamInfoError(Exception):
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
|
2015-09-01 23:49:26 +02:00
|
|
|
def __str__(self):
|
|
|
|
return repr(self.name)
|
|
|
|
|
2015-08-20 17:27:15 +02:00
|
|
|
|
|
|
|
class MisbehavingPeerError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidDataError(MisbehavingPeerError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class NoResponseError(MisbehavingPeerError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidResponseError(MisbehavingPeerError):
|
2015-09-04 22:22:02 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class NoSuchBlobError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class NoSuchStreamHashError(Exception):
|
2015-09-16 22:27:46 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidBlobHashError(Exception):
|
2016-09-20 22:58:30 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
class InvalidHeaderError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class InvalidAuthenticationToken(Exception):
|
2015-08-20 17:27:15 +02:00
|
|
|
pass
|