From ca16a762dbe237851d9f0e3d560ccbecf27f09a3 Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Fri, 3 Feb 2017 13:30:18 -0500 Subject: [PATCH] Nicer help message --- include/CLI.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/CLI.hpp b/include/CLI.hpp index 3faf63f9..4ad737cd 100644 --- a/include/CLI.hpp +++ b/include/CLI.hpp @@ -38,7 +38,7 @@ struct Error : public std::runtime_error { }; struct CallForHelp : public Error { - CallForHelp() : Error("CallForHelp","", 0) {} + CallForHelp() : Error("CallForHelp","This should be caught in your main function, see examples", 0) {} }; struct BadNameString : public Error {