try { throw; //this will throw back the exception _being handled_ (this function needs to be called in your catch block - else you will die) } catch (const MyException& exception) { return exception; }
throw; //this will throw back the exception _being handled_ (this function needs to be called in your catch block - else you will die) }
return exception; }