#include <ErrorHandling.h>
Public Member Functions | |
NVSGException (bool critical, const std::string &errMsg) | |
NVSGException (bool critical, unsigned int errMsgID) | |
virtual bool | isCritical () const |
virtual const std::string & | getErrorMessage () const |
|
Constructs a NVSGExeption object Parameters
|
|
Constructs a NVSGExeption object Parameters
Note This is not implemented yet. Use the NVSGException(bool, const string&) variant instead. |
|
Tests whether this exception is critical to the execution of subsequent code. For example, an error handler routine can query the critical status of an exception, and then decide to either throw the exception (if it is critical) or pop up a message box and then resume execution.
Return value |
|
Receive the exception's error message. Return value A reference to a const string object holding the exception's error message. |