diff options
author | David Arthur <mumrah@gmail.com> | 2013-09-24 21:18:55 -0400 |
---|---|---|
committer | David Arthur <mumrah@gmail.com> | 2013-09-24 21:20:00 -0400 |
commit | c0d2cac66940bf477c008e65c9d2bbcd79f030a0 (patch) | |
tree | ee5dc075a7d9ec86633bf4e0076a522e70da0ab4 /kafka/util.py | |
parent | 9af7b817c17a8d8c08e60607f117c8ac46668eda (diff) | |
download | kafka-python-c0d2cac66940bf477c008e65c9d2bbcd79f030a0.tar.gz |
Fix #44 Add missing exception classv0.8.0
Also move the exceptions to common instead of util
Diffstat (limited to 'kafka/util.py')
-rw-r--r-- | kafka/util.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/kafka/util.py b/kafka/util.py index bdda7ed..d580ad7 100644 --- a/kafka/util.py +++ b/kafka/util.py @@ -66,15 +66,6 @@ def group_by_topic_and_partition(tuples): return out -class BufferUnderflowError(Exception): - pass - - -class ChecksumError(Exception): - pass - -class ConsumerFetchSizeTooSmall(Exception): - pass class ReentrantTimer(object): """ |