module Roda::RodaPlugins::SinatraHelpers::ResponseMethods

def not_found?

Whether or not the status is set to 404. Returns nil if status not yet set.
def not_found?
  @status == 404 if @status
end