We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64253aa commit 4b76d41Copy full SHA for 4b76d41
kafka/errors.py
@@ -449,6 +449,18 @@ class SecurityDisabledError(BrokerResponseError):
449
description = 'Security features are disabled.'
450
451
452
+class NonEmptyGroupError(BrokerResponseError):
453
+ errno = 68
454
+ message = 'NON_EMPTY_GROUP'
455
+ description = 'The group is not empty.'
456
+
457
458
+class GroupIdNotFoundError(BrokerResponseError):
459
+ errno = 69
460
+ message = 'GROUP_ID_NOT_FOUND'
461
+ description = 'The group id does not exist.'
462
463
464
class KafkaUnavailableError(KafkaError):
465
pass
466
0 commit comments