diff options
Diffstat (limited to 'src/zen/cmds/cache.cpp')
| -rw-r--r-- | src/zen/cmds/cache.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/zen/cmds/cache.cpp b/src/zen/cmds/cache.cpp index 495662d2f..0de3f8bc3 100644 --- a/src/zen/cmds/cache.cpp +++ b/src/zen/cmds/cache.cpp @@ -2,6 +2,7 @@ #include "cache.h" +#include <zencore/except.h> #include <zencore/filesystem.h> #include <zencore/logging.h> #include <zenhttp/httpcommon.h> @@ -36,7 +37,7 @@ DropCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) if (m_NamespaceName.empty()) { - throw cxxopts::OptionParseException("Drop command requires a namespace"); + throw zen::OptionParseException("Drop command requires a namespace"); } cpr::Session Session; |