The class that is (meant to be, at least) the base of all exceptions in the framework. More...
#include <Exception.h>
The class that is (meant to be, at least) the base of all exceptions in the framework.
std::exception
, as this class defines virtual ~exception() throw();
so that each and every derived class also has to define its destructor in such a way. (Of course, this is just the point of std::exception
, but here we do not strive for exception safety anyway as an exception usually means the end of the application. Definition at line 18 of file Exception.h.