Class: ErrorsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
lib/generators/error_pages/templates/errors_controller.rb

Instance Method Summary collapse

Instance Method Details

#not_foundObject



2
3
4
# File 'lib/generators/error_pages/templates/errors_controller.rb', line 2

def not_found
  render :status => 404, :formats => [:html]
end

#server_errorObject



6
7
8
# File 'lib/generators/error_pages/templates/errors_controller.rb', line 6

def server_error
  render :status => 500, :formats => [:html]
end