mirror of
https://github.com/ditkrg/rabbit_carrots.git
synced 2026-01-23 06:16:39 +00:00
19 lines
327 B
Ruby
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
|