Realistic 3D camera system
3D camera system components
|
#include <system_error.hpp>
Public Member Functions | |
system_error (const error_code &ec) | |
Construct with an error code. More... | |
system_error (const error_code &ec, const std::string &context) | |
Construct with an error code and context. More... | |
system_error (const system_error &other) | |
Copy constructor. More... | |
virtual | ~system_error () throw () |
Destructor. More... | |
system_error & | operator= (const system_error &e) |
Assignment operator. More... | |
virtual const char * | what () const throw () |
Get a string representation of the exception. More... | |
error_code | code () const |
Get the error code associated with the exception. More... | |
The system_error class is used to represent system conditions that prevent the library from operating correctly.
Definition at line 42 of file system_error.hpp.
|
inline |
Construct with an error code.
Definition at line 47 of file system_error.hpp.
|
inline |
Construct with an error code and context.
Definition at line 54 of file system_error.hpp.
|
inline |
Copy constructor.
Definition at line 61 of file system_error.hpp.
|
inlinevirtual |
Destructor.
Definition at line 70 of file system_error.hpp.
|
inline |
Get the error code associated with the exception.
Definition at line 109 of file system_error.hpp.
|
inline |
Assignment operator.
Definition at line 75 of file system_error.hpp.
|
inlinevirtual |
Get a string representation of the exception.
Definition at line 84 of file system_error.hpp.