module Sinatra::Helpers

def not_found(body=nil)

Halt processing and return a 404 Not Found.
def not_found(body=nil)
  error 404, body
end