mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
15 lines
279 B
Python
15 lines
279 B
Python
from libp2p.exceptions import (
|
|
BaseLibp2pError,
|
|
)
|
|
|
|
|
|
class CryptographyError(BaseLibp2pError):
|
|
pass
|
|
|
|
|
|
class MissingDeserializerError(CryptographyError):
|
|
"""
|
|
Raise if the requested deserialization routine is missing for some type
|
|
of cryptographic key.
|
|
"""
|