Usage string could not be parsed (ie, the developer did something wrong)
| 45 | |
| 46 | // Usage string could not be parsed (ie, the developer did something wrong) |
| 47 | struct DocoptLanguageError : std::runtime_error { using runtime_error::runtime_error; }; |
| 48 | |
| 49 | // Arguments passed by user were incorrect (ie, developer was good, user is wrong) |
| 50 | struct DocoptArgumentError : std::runtime_error { using runtime_error::runtime_error; }; |
no outgoing calls
no test coverage detected