BitmapToolkit Scol plugin
|
#include <exceptions.h>
Public Member Functions | |
Exception () | |
Exception (int _code, const std::string &_err, const std::string &_func, const std::string &_file, int _line) | |
virtual | ~Exception () throw () |
virtual const char * | what () const throw () |
void | formatMessage () |
Public Attributes | |
std::string | msg |
the formatted error message | |
int | code |
error code | |
std::string | err |
error description | |
std::string | func |
function name. Available only when the compiler supports func macro | |
std::string | file |
source file name where the error has occured | |
int | line |
line number in the source file where the error has occured | |
The standard exception class.
Definition at line 59 of file exceptions.h.
|
inline |
Default constructor
Definition at line 65 of file exceptions.h.
|
inline |
Full constructor. Normally the constuctor is not called explicitly. Instead, the macros CV_Error(), CV_Error_() and CV_Assert() are used.
Definition at line 73 of file exceptions.h.
|
inlinevirtual |
Definition at line 78 of file exceptions.h.
|
inline |
Definition at line 86 of file exceptions.h.
|
inlinevirtual |
Definition at line 83 of file exceptions.h.
int raspicam::Exception::code |
std::string raspicam::Exception::err |
error description
Definition at line 97 of file exceptions.h.
std::string raspicam::Exception::file |
source file name where the error has occured
Definition at line 99 of file exceptions.h.
std::string raspicam::Exception::func |
function name. Available only when the compiler supports func macro
Definition at line 98 of file exceptions.h.
int raspicam::Exception::line |
line number in the source file where the error has occured
Definition at line 100 of file exceptions.h.
std::string raspicam::Exception::msg |
the formatted error message
Definition at line 94 of file exceptions.h.