diff options
author | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-07-20 14:13:37 -0400 |
---|---|---|
committer | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-07-20 14:13:37 -0400 |
commit | 362ae93851830ecce6ade70462fe991cc522d27b (patch) | |
tree | dd063257ee3a64df47f672d85b9d2af6d6ac002a /src/libutil/error.hh | |
parent | 745a03cef5977e3474dcf8ef43cb721a6a7cac8e (diff) |
Add UnimplementedError to ease grepping for these
Diffstat (limited to 'src/libutil/error.hh')
-rw-r--r-- | src/libutil/error.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/error.hh b/src/libutil/error.hh index 0daaf3be2..f3babcbde 100644 --- a/src/libutil/error.hh +++ b/src/libutil/error.hh @@ -192,6 +192,7 @@ public: MakeError(Error, BaseError); MakeError(UsageError, Error); +MakeError(UnimplementedError, Error); class SysError : public Error { |