Overloaded throwCommandException().

This commit is contained in:
Florian Pose
2010-03-05 13:20:42 +01:00
parent 7c6712415c
commit f904612136
2 changed files with 13 additions and 0 deletions
+7
View File
@@ -146,6 +146,13 @@ void Command::throwInvalidUsageException(const stringstream &s) const
/*****************************************************************************/
void Command::throwCommandException(const string &msg) const
{
throw CommandException(msg);
}
/*****************************************************************************/
void Command::throwCommandException(const stringstream &s) const
{
throw CommandException(s);