From: Rafał Długołęcki Date: Wed, 6 May 2015 06:01:08 +0000 (+0200) Subject: Update require text. X-Git-Tag: v0.2~14 X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;ds=sidebyside;h=395cd2099ecba699dcad270fa1fb42c1d8603ece;hp=0d52a8d02278592356f94ac17b1ccc5fcea388a5;p=command.git Update require text. --- diff --git a/include/command.h b/include/command.h index 6e8ecf6..98db429 100644 --- a/include/command.h +++ b/include/command.h @@ -60,7 +60,7 @@ namespace command { } for(Parameter *param : parameters) { if (param->isRequired() && !param->isUsed()) { - throw std::logic_error(param->describe() + " is required but it was not handled"); + throw std::logic_error(param->describe() + " is required but it was not passed"); } } }