This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

abort_on_exception

        # Thread.abort_on_exception

(from ruby core)
---
    Thread.abort_on_exception   -> true or false

---

Returns the status of the global ``abort on exception'' condition.

The default is `false`.

When set to `true`, if any thread is aborted by an exception, the raised
exception will be re-raised in the main thread.

Can also be specified by the global $DEBUG flag or command line option
`-d`.

See also ::abort_on_exception=.

There is also an instance level method to set this for a specific
thread, see #abort_on_exception.


(from ruby core)
---
    thr.abort_on_exception   -> true or false

---

Returns the status of the thread-local ``abort on exception'' condition
for this `thr`.

The default is `false`.

See also #abort_on_exception=.

There is also a class level method to set this for all threads, see
::abort_on_exception.



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.