Home | History | Annotate | Download | only in cli

Lines Matching refs:usage_error

88 /// Executes the given subcommand with proper usage_error reporting.
99 /// \throw cmdline::usage_error If the user input to the subcommand is invalid.
114 } catch (const cmdline::usage_error& e) {
115 throw std::pair< std::string, cmdline::usage_error >(
138 /// \throw cmdline::usage_error If the user ran the program with invalid
187 throw cmdline::usage_error(e.what());
191 throw cmdline::usage_error("No command provided");
199 throw cmdline::usage_error(F("Unknown command '%s'") % cmdname);
271 } catch (const std::pair< std::string, cmdline::usage_error >& e) {
279 } catch (const cmdline::usage_error& e) {