From da08d37c38a4533ea77de803280be4caffe61682 Mon Sep 17 00:00:00 2001 From: NIC619 Date: Thu, 17 Oct 2019 15:03:18 +0800 Subject: [PATCH] Add `SedesException` SecioException --- libp2p/security/secio/exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libp2p/security/secio/exceptions.py b/libp2p/security/secio/exceptions.py index c03fda4..d86ce3b 100644 --- a/libp2p/security/secio/exceptions.py +++ b/libp2p/security/secio/exceptions.py @@ -28,3 +28,7 @@ class IncompatibleChoices(SecioException): class InconsistentNonce(SecioException): pass + + +class SedesException(SecioException): + pass