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/?p=command.git;a=commitdiff_plain;h=395cd2099ecba699dcad270fa1fb42c1d8603ece 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"); } } }