Sha256: 1cb488f8ed10b7b7ec2c046edd3e81557447cd796763fdfa05b8888108701027

Contents?: true

Size: 558 Bytes

Versions: 2

Compression:

Stored size: 558 Bytes

Contents

# frozen_string_literal: true

require_relative 'rabbit_carrots/version'
require 'rabbit_carrots/connection'
require 'rabbit_carrots/core'
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-1.0.1 lib/rabbit_carrots.rb
rabbit_carrots-1.0.0 lib/rabbit_carrots.rb