CmdReport: Added feedback when report not specified

This commit is contained in:
Paul Beckingham 2016-03-26 12:41:01 -04:00
parent b56c266990
commit be49997646

View file

@ -122,6 +122,8 @@ int CmdReport (
for (auto& line : output)
std::cout << line << "\n";
}
else
throw std::string ("Specify which report to run.");
return 0;
}