I'm new to c++, using c++98
I'm trying to throw from the same function more than one exception and i'm struggling with the syntax - which made me wonder if that's even possible without a workaround...
The function should look like this:
Worker* CreateWorker(myIO* workerInfo) throw (AgeNotInRange), throw(WorkerTypeNotDefined);
I've tried also without the comma with no success...