diff options
Diffstat (limited to 'src/lib/exceptions.h')
| -rw-r--r-- | src/lib/exceptions.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index 05c66df3a..950c2f381 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -259,6 +259,12 @@ public: InvalidSignerError (); }; +class ProgrammingError : public StringError +{ +public: + ProgrammingError (std::string file, int line); +}; + /** @class ExceptionStore * @brief A parent class for classes which have a need to catch and * re-throw exceptions. |
