mschae/rabbithole

View on GitHub
lib/rabbithole/error_handlers/null_handler.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Rabbithole
  module ErrorHandlers
    class NullHandler
      def self.handle(error, queue, payload)
        # do nothing
      end
    end
  end
end