py-libp2p/libp2p/security/secio/exceptions.py
2019-08-24 22:37:45 +02:00

28 lines
421 B
Python

class SecioException(Exception):
pass
class SelfEncryption(SecioException):
"""
Raised to indicate that a host is attempting to encrypt communications
with itself.
"""
pass
class PeerMismatchException(SecioException):
pass
class InvalidSignatureOnExchange(SecioException):
pass
class HandshakeFailed(SecioException):
pass
class IncompatibleChoices(SecioException):
pass