Quick actions

cmd+k|ctrl+k

Navigation

Languages

report on exception

Snippet info

Language

Ruby

Visibility

public

Author

hyrious

Created

2019-02-05T01:34:24Z

Updated

2019-02-23T06:29:40Z

t = Thread.new {
  p 1
  Thread.pass
  p 2
  raise 3
  p 4
}
t.abort_on_exception = false
t.report_on_exception = false
p 5
INFO