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