diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-28 21:48:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-28 21:52:32 +0100 |
| commit | 90aa7853f94457563b7736ed2ea4e68c919f93cd (patch) | |
| tree | 41e79e4fe9403e07e25613a181af1c2ede74562f /src/exceptions.h | |
| parent | 9f75a44df591954519ac828a1b50b6d5ebd2a3a1 (diff) | |
Missing initialisattion of DCPReadError::_message.
Diffstat (limited to 'src/exceptions.h')
| -rw-r--r-- | src/exceptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/exceptions.h b/src/exceptions.h index 2871ee86..8bc6e550 100644 --- a/src/exceptions.h +++ b/src/exceptions.h @@ -99,6 +99,7 @@ class DCPReadError : public std::runtime_error public: explicit DCPReadError (std::string message) : std::runtime_error(message) + , _message(message) {} DCPReadError (std::string message, std::string detail); |
