From 92320523d54a840173e0322cc340168d532754c6 Mon Sep 17 00:00:00 2001 From: mhchia Date: Mon, 12 Aug 2019 14:45:30 +0800 Subject: [PATCH] Add the missing exceptions.py --- libp2p/stream_muxer/mplex/exceptions.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 libp2p/stream_muxer/mplex/exceptions.py diff --git a/libp2p/stream_muxer/mplex/exceptions.py b/libp2p/stream_muxer/mplex/exceptions.py new file mode 100644 index 0000000..74a6ade --- /dev/null +++ b/libp2p/stream_muxer/mplex/exceptions.py @@ -0,0 +1,2 @@ +class StreamNotFound(Exception): + pass