Add OpenConnectionError for base transport

This commit is contained in:
NIC619 2019-09-19 21:23:01 +08:00
parent 7243eb9766
commit c44be5e247
No known key found for this signature in database
GPG Key ID: 570C35F5C2D51B17

View File

@ -1,7 +1,10 @@
from libp2p.exceptions import BaseLibp2pError
# TODO: Add `BaseLibp2pError` and `UpgradeFailure` can inherit from it?
class OpenConnectionError(BaseLibp2pError):
pass
class UpgradeFailure(BaseLibp2pError):
pass