Allows you to enable automatic thread's exception handling.
Unit
ValueTrue - automatically invoke EurekaLog for exceptions in thread. False (default) - do not alter standard behaviour; store thread exception in FatalException property; you must analyze this exception manually.
RemarksBy default this property is set to False. This means that TThreadEx class will behave in the same way as TThread class - it will store thread's fatal exception into FatalException property, which must be analyzed by caller thread. For example:
or:
When AutoHandleException property is set to True - EurekaLog will call HandleException function automatically for thread's fatal exceptions.
Please note that even when AutoHandleException is True - FatalException property will still be filled with exception.
See also
|