Hi All
I have a customized exception class. say class CustomExcep{};
My Application is a middleware made of C++. It is a webservice which is used for the communication between Java based web Front-end and the DCE Backend.
whenever the DCE Backend is not running or down due to some core dumps, the application throws the CustomExcep.
It's like this.
CustomExcep * exc = new CustomExcep(); throw exc;
I am unable to use the stack memory for this as it leads to some run-time exceptions.
I need a solution to clear the memory used by this CustomException. Can we use Templates for this purpose?
Any help would be appreciated. Thanks in Advance.