module DispatchRider::DefaultErrorHandler

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

Public Class Methods

call(message, exception) click to toggle source
# File lib/dispatch-rider/error_handlers.rb, line 6
def self.call(message, exception)
  raise exception
end