module Roda::RodaPlugins::ErrorHandler::ClassMethods
Public Instance Methods
Source
# File lib/roda/plugins/error_handler.rb, line 63 def error(&block) define_method(:handle_error, &block) alias_method(:handle_error, :handle_error) private :handle_error end
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.