Thread.abort_on_exception â true or false
Class Public methods
Returns the status of the global âabort on exception'' condition.
The default is false
. When set to true
, or if the
global $DEBUG
flag is true
(perhaps because the
command line option -d
was specified) all threads will abort
(the process will exit(0)
) if an exception is raised in any
thread. See also Thread::abort_on_exception=
.
Please login to continue.