forked from LBRYCommunity/lbry-sdk
18 lines
261 B
Python
18 lines
261 B
Python
class TransportException(Exception):
|
|
pass
|
|
|
|
|
|
class ServiceException(Exception):
|
|
code = -2
|
|
|
|
|
|
class RemoteServiceException(Exception):
|
|
pass
|
|
|
|
|
|
class ProtocolException(Exception):
|
|
pass
|
|
|
|
|
|
class MethodNotFoundException(ServiceException):
|
|
code = -3
|