|
| Exception (const std::string &) |
|
| Exception (const std::string &, int err) |
|
virtual const char * | what () const throw () |
|
int | err () const |
|
Definition at line 20 of file Exception.h.
◆ Exception() [1/3]
Definition at line 12 of file Exception.cc.
13 : m_comment(""), m_err(0)
14{
15}
◆ Exception() [2/3]
Definition at line 17 of file Exception.cc.
18 : m_comment(comment), m_err(0)
19{
20}
◆ Exception() [3/3]
Exception |
( |
const std::string & |
comment, |
|
|
int |
err |
|
) |
| |
Definition at line 22 of file Exception.cc.
24 : m_comment(comment), m_err(err)
25{
26}
◆ ~Exception()
◆ err()
◆ what()
const char * what |
( |
| ) |
const |
throw | ( | |
| ) | | |
|
virtual |
Definition at line 31 of file Exception.cc.
33{
34 return m_comment.c_str();
35}
◆ m_comment
◆ m_err
The documentation for this class was generated from the following files: