summaryrefslogtreecommitdiff
path: root/python/qpid/framer.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/qpid/framer.py')
-rw-r--r--python/qpid/framer.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/qpid/framer.py b/python/qpid/framer.py
index 78a29235cb..27ea3287f0 100644
--- a/python/qpid/framer.py
+++ b/python/qpid/framer.py
@@ -18,6 +18,7 @@
#
import struct, socket
+from exceptions import Closed
from packer import Packer
from threading import Lock
from logging import getLogger
@@ -66,8 +67,6 @@ class Frame:
self.channel,
self.payload)
-class Closed(Exception): pass
-
class FramingError(Exception): pass
class Framer(Packer):