Sha256: eaee60de53c45099835d0d13c4ec9f8d433eb860e48bb935dfb2c72be20f31af
Contents?: true
Size: 396 Bytes
Versions: 16
Compression:
Stored size: 396 Bytes
Contents
# frozen_string_literal: true # Main module to encapsulate logic module Karafka module Testing # Errors that can be raised by this lib module Errors # Base error for all the internal errors BaseError = Class.new(StandardError) # Raised when we want to build a consumer for a topic that does not exist TopicNotFoundError = Class.new(BaseError) end end end
Version data entries
16 entries across 16 versions & 1 rubygems