JWS C++ Library
C++ language utility library
|
Result error exception. More...
#include <exception.h>
Public Member Functions | |
Result_error (const char *msg, const char *file=0, uint32_t line=0) | |
Constructs an Exception caused by an invalid result generated by a function. | |
Result_error (const string &msg, const char *file=0, uint32_t line=0) | |
Constructs an Exception caused by an invalid result generated by a function. | |
Result_error (const Result_error &e) | |
Constructs an Exception from another. | |
virtual | ~Result_error () |
Deletes a Result_error. |
Result error exception.
Thrown when an invalid result is generated by a function.
Definition at line 239 of file exception.h.
Result_error::Result_error | ( | const char * | msg, |
const char * | file = 0 , |
||
uint32_t | line = 0 |
||
) |
Constructs an Exception caused by an invalid result generated by a function.
msg | Error message. |
file | File where the error occurred. |
line | Line approximately where the error occurred. |
Definition at line 277 of file exception.cpp.
Result_error::Result_error | ( | const string & | msg, |
const char * | file = 0 , |
||
uint32_t | line = 0 |
||
) |
Constructs an Exception caused by an invalid result generated by a function.
msg | Error message. |
file | File where the error occurred. |
line | Line approximately where the error occurred. |
Definition at line 288 of file exception.cpp.
Result_error::Result_error | ( | const Result_error & | e | ) |
Constructs an Exception from another.
e | Exception to copy into this one. |
Definition at line 295 of file exception.cpp.
virtual jwscxx::base::Result_error::~Result_error | ( | ) | [inline, virtual] |
Deletes a Result_error.
Definition at line 262 of file exception.h.