rabbit_carrots/lib/rabbit_carrots/errors.rb

19 lines
327 B
Ruby

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