module Roda::RodaPlugins::ErrorHandler

def self.configure(app, &block)

the Roda class with it.
If a block is given, automatically call the +error+ method on
def self.configure(app, &block)
  if block
    app.error(&block)
  end
end