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



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

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