Class: ErrorsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/errors_controller.rb

Instance Method Summary collapse

Instance Method Details

#not_foundObject



2
3
4
5
6
7
# File 'app/controllers/errors_controller.rb', line 2

def not_found
  respond_to do |format|
    format.html { render template: 'errors/not_found', status: 404 }
    format.any  { head 404 }
  end
end