module Roda::RodaPlugins::ErrorHandler::InstanceMethods

def _route

the error handler.
If an error occurs, set the response status to 500 and call
def _route
  super
rescue => e
  @_response.status = 500
  super{handle_error(e)}
end