Method: Sinatra::Base.not_found

Defined in:
lib/sinatra/base.rb

.not_found(&block) ⇒ Object

Sugar for error(404) { ... }



1411
1412
1413
# File 'lib/sinatra/base.rb', line 1411

def not_found(&block)
  error(404, &block)
end