Module: DispatchRider::DefaultErrorHandler

Defined in:
lib/dispatch-rider/error_handlers.rb

Overview

This is the default error handler for dispatch rider. It simply re-raises the exception.

Class Method Summary collapse

Class Method Details

.call(message, exception) ⇒ Object



6
7
8
# File 'lib/dispatch-rider/error_handlers.rb', line 6

def self.call(message, exception)
  raise exception
end