#include <exceptions.h>
Definition at line 80 of file exceptions.h.
◆ ErrorException() [1/2]
ErrorException::ErrorException |
( |
const string & |
what_arg | ) |
|
Definition at line 21 of file Exceptions.cpp.
24 len = strlen(what_arg.c_str())+1;
26 memcpy(
what_str,what_arg.c_str(),len);
◆ ErrorException() [2/2]
ErrorException::ErrorException |
( |
const string & |
what_file, |
|
|
const string & |
what_function, |
|
|
int |
what_line, |
|
|
const string & |
what_arg |
|
) |
| |
Definition at line 33 of file Exceptions.cpp.
37 len = strlen(what_arg.c_str())+1;
39 memcpy(
what_str,what_arg.c_str(),len);
41 len = strlen(what_file.c_str())+1;
45 len = strlen(what_function.c_str())+1;
◆ ~ErrorException()
ErrorException::~ErrorException |
( |
| ) |
|
throw | ( | |
| ) | | |
◆ what()
const char * ErrorException::what |
( |
| ) |
const |
throw | ( | |
| ) | | |
|
virtual |
◆ Report()
void ErrorException::Report |
( |
| ) |
const |
◆ WrapperReport()
const char * ErrorException::WrapperReport |
( |
| ) |
const |
Definition at line 86 of file Exceptions.cpp.
89 std::ostringstream buffer;
94 buffer <<
" error message: " << this->
what_str;
102 std::string buffer2 = buffer.str();
103 message = xNew<char>(strlen(buffer2.c_str())+1); sprintf(message,
"%s",buffer2.c_str());
◆ what_str
char* ErrorException::what_str |
|
private |
◆ function_name
char* ErrorException::function_name |
|
private |
◆ file_name
char* ErrorException::file_name |
|
private |
◆ file_line
int ErrorException::file_line |
|
private |
The documentation for this class was generated from the following files: