t1 = Thread.new do puts "Hello" sleep 2 raise "some exception" puts "Goodbye"endt2 = Thread.new { sleep 100 }sleep 2puts "The End"