class ExceptionInheritanceRescueController

Public Instance Methods

raise_child_exception() click to toggle source
# File actionpack/test/controller/rescue_test.rb, line 182
def raise_child_exception
  raise ChildException
end
raise_grandchild_exception() click to toggle source
# File actionpack/test/controller/rescue_test.rb, line 186
def raise_grandchild_exception
  raise GrandchildException
end
raise_parent_exception() click to toggle source
# File actionpack/test/controller/rescue_test.rb, line 178
def raise_parent_exception
  raise ParentException
end