mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
13 lines
207 B
Python
13 lines
207 B
Python
class BaseLibp2pError(Exception):
|
|
pass
|
|
|
|
|
|
class ValidationError(BaseLibp2pError):
|
|
"""
|
|
Raised when something does not pass a validation check.
|
|
"""
|
|
|
|
|
|
class ParseError(BaseLibp2pError):
|
|
pass
|