bear101 - 2004-08-10

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