Browse Source

For debugging purposes

sync
Thomas 7 years ago
parent
commit
191bb8b5e4
  1. 3
      Adapter.cc

3
Adapter.cc

@ -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