Simulated Reality SDK 7500c78d v1.30.2.51085 2024-04-26T11:23:03Z
Stable
|
Class of exception which indicates a general SR logic error. More...
#include <exception.h>
Public Member Functions | |
Exception (const char *message) | |
Constructor (C strings). More... | |
Exception (const std::string &message) | |
Constructor (C++ STL strings). More... | |
virtual | ~Exception () throw () |
Destructor. Virtual to allow for subclassing. More... | |
virtual const char * | what () const throw () |
Returns a pointer to the (constant) error description. More... | |
Protected Attributes | |
std::string | errorMessage |
Error message. More... | |
Class of exception which indicates a general SR logic error.
Suppressing warning because if we don't want to export everything then solving the underlying problem requires modification of the API Warning Description: non - DLL-interface class 'class_1' used as base for DLL-interface class 'class_2' Candidate for deprecation
|
inlineexplicit |
Constructor (C strings).
message | C-style string error message. |
|
inlineexplicit |
Constructor (C++ STL strings).
message | The error message. |
|
inlinevirtual |
Destructor. Virtual to allow for subclassing.
|
inlinevirtual |
Returns a pointer to the (constant) error description.
|
protected |
Error message.
Suppressing warning because if we don't want to export everything then solving the underlying problem requires modification of the API Warning Description: 'type' : class 'type1' needs to have dll-interface to be used by clients of class 'type2' Candidate for deprecation