Sha256: dc7d2a50b0c0c56778da9ab8f1045ac0a4c879bb10322e0aa7504b1a05032076

Contents?: true

Size: 528 Bytes

Versions: 2

Compression:

Stored size: 528 Bytes

Contents

# frozen_string_literal: true

require_relative 'rabbit_carrots/version'
require 'rabbit_carrots/connection'
require 'rabbit_carrots/configuration'
require 'rabbit_carrots/railtie' if defined?(Rails)

module RabbitCarrots
  class Error < StandardError; end

  module EventHandlers
    module Errors
      class IrrelevantMessage < StandardError
      end

      class NackMessage < StandardError
      end

      class NackAndRequeueMessage < StandardError
      end

      class PlaceholderError < Error; end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rabbit_carrots-0.1.20 lib/rabbit_carrots.rb
rabbit_carrots-0.1.19 lib/rabbit_carrots.rb