I'm trying to figure out how to use the ConcurrentExecutor but I keep getting exceptions even in the simplest examples. Here's an example of where Cancellation_Exception is thrown:
int main() {
{
ConcurrentExecutor executor;
}//throws Cancellation_Exception
return 0;
}
If Cancellation_Exception is supposed to be thrown in the above example then where should I place my try..catch block?
Kind regards
Bjoern
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello there
I'm trying to figure out how to use the ConcurrentExecutor but I keep getting exceptions even in the simplest examples. Here's an example of where Cancellation_Exception is thrown:
int main() {
{
ConcurrentExecutor executor;
}//throws Cancellation_Exception
return 0;
}
If Cancellation_Exception is supposed to be thrown in the above example then where should I place my try..catch block?
Kind regards
Bjoern