|
| KeyRingException () |
| Ctor taking message. More...
|
|
| KeyRingException (const std::string &msg_r) |
| Ctor taking message. More...
|
|
virtual | ~KeyRingException () throw () |
| Dtor. More...
|
|
| Exception () |
| Default ctor. More...
|
|
| Exception (const std::string &msg_r) |
| Ctor taking a message. More...
|
|
| Exception (std::string &&msg_r) |
|
| Exception (const std::string &msg_r, const Exception &history_r) |
| Ctor taking a message and an exception to remember as history. More...
|
|
| Exception (std::string &&msg_r, const Exception &history_r) |
|
| Exception (const std::string &msg_r, Exception &&history_r) |
|
| Exception (std::string &&msg_r, Exception &&history_r) |
|
virtual | ~Exception () throw () |
| Dtor. More...
|
|
const CodeLocation & | where () const |
| Return CodeLocation. More...
|
|
void | relocate (const CodeLocation &where_r) const |
| Exchange location on rethrow. More...
|
|
const std::string & | msg () const |
| Return the message string provided to the ctor. More...
|
|
std::string | asString () const |
| Error message provided by dumpOn as string. More...
|
|
std::string | asUserString () const |
| Translated error message as string suitable for the user. More...
|
|
void | remember (const Exception &old_r) |
| Store an other Exception as history. More...
|
|
void | remember (Exception &&old_r) |
|
void | addHistory (const std::string &msg_r) |
| Add some message text to the history. More...
|
|
void | addHistory (std::string &&msg_r) |
|
template<class TContainer > |
void | addToHistory (const TContainer &msgc_r) |
| addHistory from string container types (oldest first) More...
|
|
template<class TContainer > |
void | moveToHistory (TContainer &&msgc_r) |
| addHistory from string container types (oldest first) moving More...
|
|
HistoryIterator | historyBegin () const |
| Iterator pointing to the most recent message. More...
|
|
HistoryIterator | historyEnd () const |
| Iterator pointing behind the last message. More...
|
|
bool | historyEmpty () const |
| Whether the history list is empty. More...
|
|
HistorySize | historySize () const |
| The size of the history list. More...
|
|
std::string | historyAsString () const |
| The history as string. More...
|
|
std::string | asUserHistory () const |
| A single (multiline) string composed of asUserString and historyAsString. More...
|
|