module Roda::RodaPlugins::ErrorHandler::ClassMethods

Public Instance Methods

error(&block) click to toggle source

Install the given block as the error handler, so that if routing the request raises an exception, the block will be called with the exception in the scope of the Roda instance.

# File lib/roda/plugins/error_handler.rb, line 40
def error(&block)
  define_method(:handle_error, &block)
  private :handle_error
end