Method: Sinatra::Base.not_found

Defined in:
lib/sinatra/base.rb

.not_found(&block) ⇒ Object

Sugar for error(404) { ... }

[View source]

1407
1408
1409
# File 'lib/sinatra/base.rb', line 1407

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