method
    
    template_path_for_local_rescue
  template_path_for_local_rescue(exception)
  private
  
    Hide source    
    
      
  
# File actionpack/lib/action_controller/rescue.rb, line 117 def template_path_for_local_rescue(exception) rescues_path( case exception when MissingTemplate then "missing_template" when RoutingError then "routing_error" when UnknownAction then "unknown_action" when ActionView::TemplateError then "template_error" else "diagnostics" end ) end

  
  
  