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 7
def self.call(_message, exception)
  raise exception
end