raise

thr.raise
thr.raise(string)
thr.raise(exception [, string [, array]])
Instance Public methods

Raises an exception (see Kernel::raise) from thr. The caller does not have to be thr.

Thread.abort_on_exception = true
a = Thread.new { sleep(200) }
a.raise("Gotcha")

produces:

prog.rb:3: Gotcha (RuntimeError)
 from prog.rb:2:in `initialize'
 from prog.rb:2:in `new'
 from prog.rb:2
doc_ruby_on_rails
2015-05-17 14:00:09
Comments
Leave a Comment

Please login to continue.