Sha256: 4162e67c7ab9f48e967a6fb7cdc66b48f7e43b4c57b364397e115f34d80292ac
Contents?: true
Size: 1 KB
Versions: 7
Compression:
Stored size: 1 KB
Contents
# frozen_string_literal: true # This Karafka component is a Pro component under a commercial license. # This Karafka component is NOT licensed under LGPL. # # All of the commercial components are present in the lib/karafka/pro directory of this # repository and their usage requires commercial license agreement. # # Karafka has also commercial-friendly license, commercial support and commercial components. # # By sending a pull request to the pro components, you are agreeing to transfer the copyright of # your code to Maciej Mensfeld. module Karafka module Pro module ScheduledMessages # Scheduled Messages related errors module Errors # Base for all the recurring tasks errors BaseError = Class.new(::Karafka::Errors::BaseError) # Raised when the scheduled messages processor is older than the messages we started to # receive. In such cases we stop because there may be schema changes. IncompatibleSchemaError = Class.new(BaseError) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems