module Roda::RodaPlugins::SinatraHelpers::RequestMethods

def not_found(body = nil)

Halt processing and return a 404 response with an optional body.
def not_found(body = nil)
  error(404, body)
end