From 7041bac5984d8f3e1e2d730a6f6291f1ec22e08a Mon Sep 17 00:00:00 2001 From: Marcin Kuzminski Date: Mon, 2 Jan 2017 14:11:02 +0100 Subject: [PATCH] channelstream: make main exception be base for all others. --- rhodecode/lib/channelstream.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rhodecode/lib/channelstream.py b/rhodecode/lib/channelstream.py index 710a57d6..99669743 100644 --- a/rhodecode/lib/channelstream.py +++ b/rhodecode/lib/channelstream.py @@ -42,11 +42,11 @@ class ChannelstreamException(Exception): pass -class ChannelstreamConnectionException(Exception): +class ChannelstreamConnectionException(ChannelstreamException): pass -class ChannelstreamPermissionException(Exception): +class ChannelstreamPermissionException(ChannelstreamException): pass