py-libp2p/libp2p/io/exceptions.py
2019-10-17 15:34:11 +08:00

28 lines
414 B
Python

from libp2p.exceptions import BaseLibp2pError
class IOException(BaseLibp2pError):
pass
class IncompleteReadError(IOException):
"""
Fewer bytes were read than requested.
"""
class MsgioException(IOException):
pass
class MissingLengthException(MsgioException):
pass
class MissingMessageException(MsgioException):
pass
class DecryptionFailedException(MsgioException):
pass