I have a class that is derived from another class. I want to be able to catch and re-throw the exception(s) thrown by the derived class's constructor in my derived class's constructor.
There seems to be a solution for this in C#: https://stackoverflow.com/a/18795956/13147242
But since there is no such keyword as C#'s base
I have no idea how and if this is possible in C++.
Is there a solution? This would enable me to reuse quite a lot of code.