Arguments contained '--help' and parsing was aborted early
| 51 | |
| 52 | // Arguments contained '--help' and parsing was aborted early |
| 53 | struct DocoptExitHelp : std::runtime_error { DocoptExitHelp() : std::runtime_error("Docopt --help argument encountered"){} }; |
| 54 | |
| 55 | // Arguments contained '--version' and parsing was aborted early |
| 56 | struct DocoptExitVersion : std::runtime_error { DocoptExitVersion() : std::runtime_error("Docopt --version argument encountered") {} }; |