module Roda::RodaPlugins::NotFound::ClassMethods

def not_found(&block)

Install the given block as the not_found handler.
def not_found(&block)
  status_handler(404, &block)
end