Exception Catching and Member Functions of Task
Learn how to catch exceptions caused during the execution of tasks and an elaboration on the member functions of a task.
We'll cover the following...
We'll cover the following...
Exceptions
As tasks are executed on separate threads, the exceptions that they throw cannot be caught by the thread that started them. Therefore, the exceptions that are thrown are automatically caught by the tasks themselves to be rethrown later when Task member functions like yieldForce() are called. This enables the main thread to catch exceptions that are thrown by a task.
The output of the program shows that the uncaught exception that has been thrown by the task does not terminate the entire program right away (it terminates ...