Definition at line 24 of file Exception.h.
◆ Exception() [1/3]
Magick::Exception::Exception |
( |
const std::string & | what_ | ) |
|
Definition at line 23 of file Exception.cpp.
24 : std::exception(),
25 _what(what_),
26 _nested((Exception *) NULL)
27{
28}
◆ Exception() [2/3]
Magick::Exception::Exception |
( |
const std::string & | what_, |
|
|
Exception * | nested_ ) |
Definition at line 30 of file Exception.cpp.
32 : std::exception(),
33 _what(what_),
34 _nested(nested_)
35{
36}
◆ Exception() [3/3]
Magick::Exception::Exception |
( |
const Exception & | original_ | ) |
|
Definition at line 38 of file Exception.cpp.
39 : exception(original_),
40 _what(original_._what),
41 _nested((Exception *) NULL)
42{
43}
◆ ~Exception()
Magick::Exception::~Exception |
( |
| ) |
|
throw | ( | ) | | | |
|
virtual |
◆ nested() [1/2]
◆ nested() [2/2]
void Magick::Exception::nested |
( |
Exception * | nested_ | ) |
|
throw | ( | ) | | | |
◆ operator=()
Definition at line 50 of file Exception.cpp.
52{
53 if (this != &original_)
54 this->_what=original_._what;
55 return(*this);
56}
◆ what()
const char * Magick::Exception::what |
( |
| ) |
const |
throw | ( | ) | | | |
|
virtual |
Definition at line 58 of file Exception.cpp.
59{
60 return(_what.c_str());
61}
◆ _nested
◆ _what
std::string Magick::Exception::_what |
|
private |
The documentation for this class was generated from the following files: