Module: Karafka::Testing::Errors

Defined in:
lib/karafka/testing/errors.rb

Overview

Errors that can be raised by this lib

Constant Summary collapse

BaseError =

Base error for all the internal errors

Class.new(StandardError)
TopicNotFoundError =

Raised when we want to build a consumer for a topic that does not exist

Class.new(BaseError)
TopicInManyConsumerGroupsError =

Raised when topic is in many consumer groups and not limited by consumer group expectation

Class.new(BaseError)
ConsumerGroupNotFound =

Raised when you requested a topic from a consumer group that does not exist

Class.new(BaseError)