Hi, I am rather new to C++ programming, but I have worked with Java for sometime.
The thing is that Java has a parent exception class from witch all other exceptions should derive from, therefore when you write a try/catch block you can basically catch any exceptions using the parent exception class.
Does g++ has something similar to this?
Also I've looked around the web seeking the answer to this problem and I found several people saying that Exception Handling on g++ was still under development. Is this still true? Is it safe to use exceptions in g++ or I should wait a while until they are more stable?
Thanks,
Komyg
The thing is that Java has a parent exception class from witch all other exceptions should derive from, therefore when you write a try/catch block you can basically catch any exceptions using the parent exception class.
Does g++ has something similar to this?
Also I've looked around the web seeking the answer to this problem and I found several people saying that Exception Handling on g++ was still under development. Is this still true? Is it safe to use exceptions in g++ or I should wait a while until they are more stable?
Thanks,
Komyg