diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-27 01:36:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-27 01:36:47 +0100 |
| commit | 267e21bfb78593bcb87eb24ce01b88d0859566f7 (patch) | |
| tree | eb716ee81a8eea4c1519e46fed93370fe24285c6 /src/lib/exceptions.h | |
| parent | bf38748add4653a214724f49d55890dae1ce2361 (diff) | |
| parent | 0fa64650da252ce29389b62e5c40f32096dc9c4b (diff) | |
Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
Diffstat (limited to 'src/lib/exceptions.h')
| -rw-r--r-- | src/lib/exceptions.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index 7240611ee..6939f81a3 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -263,4 +263,12 @@ public: ProgrammingError (std::string file, int line); }; +class TextEncodingError : public StringError +{ +public: + TextEncodingError (std::string s) + : StringError (s) + {} +}; + #endif |
