diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-20 21:45:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-12-21 21:03:07 +0100 |
| commit | 531f206850224bf416a4d9854db18caa9c7b33aa (patch) | |
| tree | 6e12f8ace341075bd1b196459ab23d64741e477c /src/lib/exceptions.cc | |
| parent | d98702bd89f418d03d3184732edff32d2ca213be (diff) | |
Tidy up NetworkError.
Diffstat (limited to 'src/lib/exceptions.cc')
| -rw-r--r-- | src/lib/exceptions.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/exceptions.cc b/src/lib/exceptions.cc index 7e98a2b57..66db9fda7 100644 --- a/src/lib/exceptions.cc +++ b/src/lib/exceptions.cc @@ -116,8 +116,8 @@ KDMAsContentError::KDMAsContentError () } -NetworkError::NetworkError (string s, string d) - : runtime_error (String::compose("%1 (%2)", s, d)) +NetworkError::NetworkError (string s, optional<string> d) + : runtime_error (String::compose("%1%2", s, d ? String::compose(" (%1)", *d) : "")) , _summary (s) , _detail (d) { |
