Inherits exception.
Public Member Functions | |
| virtual const char * | what () const throw () | 
| Returns a descriptive error message explaining what went wrong.   | |
| xCeptionSmartUtilities (const std::string &err) throw () | |
| Overloaded Constructor basically doing the same as the const TCHAR * version.   | |
| xCeptionSmartUtilities (const char *err) throw () | |
| Constructor taking a const char pointer.   | |
| xCeptionSmartUtilities | ( | const char * | err | ) | throw () | 
Constructor taking a const char pointer.
The char * will contain the description returned from the virtual member function called what()
| xCeptionSmartUtilities | ( | const std::string & | err | ) | throw () | 
Overloaded Constructor basically doing the same as the const TCHAR * version.
See the const char * err overloaded version
| virtual const char* what | ( | ) |  const  throw () [virtual] | 
        
Returns a descriptive error message explaining what went wrong.
Overridden from the std::exception::what()
 This function will ALWAYS return a char * string since it must be compliant with std::exception::what() function