For debugging purposes

sync
Thomas 5 years ago
parent 05e7a8fa90
commit 191bb8b5e4

@ -21,7 +21,8 @@ namespace pEp {
if (status == PEP_ILLEGAL_VALUE)
throw invalid_argument("illegal value");
throw RuntimeError(status_to_string(status), status);
string _status = status_to_string(status);
throw RuntimeError(_status, status);
}
RuntimeError::RuntimeError(const std::string& _text, PEP_STATUS _status)

Loading…
Cancel
Save