Flowdock
method

response_code_for_rescue

Importance_0
v1.0.0 - Show latest stable - 0 notes - Class: ActionController::Rescue
response_code_for_rescue(exception) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/rescue.rb, line 128
      def response_code_for_rescue(exception)
        case exception
          when UnknownAction, RoutingError then "404 Page Not Found"
          else "500 Internal Error"
        end
      end
Register or log in to add new notes.