From 64e9cebfa5e883464cfe76af0c3476ae542ac17b Mon Sep 17 00:00:00 2001 From: Zack Dever Date: Thu, 7 Apr 2016 18:36:14 -0700 Subject: Kafka metrics java port. No reporters or instrumentation. There is no straight translation for the JMX reporter into python, so I'll do something else in a separate commit. --- kafka/errors.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'kafka/errors.py') diff --git a/kafka/errors.py b/kafka/errors.py index a36ee75..dd64b04 100644 --- a/kafka/errors.py +++ b/kafka/errors.py @@ -361,6 +361,10 @@ class KafkaConfigurationError(KafkaError): pass +class QuotaViolationError(KafkaError): + pass + + class AsyncProducerQueueFull(KafkaError): def __init__(self, failed_msgs, *args): super(AsyncProducerQueueFull, self).__init__(*args) -- cgit v1.2.1