svenfuchs
2/28/2011 - 11:43 PM

gistfile1.rb

class A < Exception; end
a = catch(:a) do
  throw :a, A.new
end
p a

# => #<A: A>