class Aquarium::Raiser
Public Instance Methods
raise_exception1()
click to toggle source
# File examples/exception_wrapping_example.rb 18 def raise_exception1 19 raise Exception1.new("one") 20 end
raise_exception2()
click to toggle source
# File examples/exception_wrapping_example.rb 21 def raise_exception2 22 raise Exception2.new("two") 23 end