| 190 | }; |
| 191 | |
| 192 | class OptionNotPresent : public CommandArgBaseException |
| 193 | { |
| 194 | public: |
| 195 | OptionNotPresent(const std::string key) noexcept |
| 196 | : CommandArgBaseException("Option '" + key + "' value is not present") |
| 197 | { |
| 198 | } |
| 199 | }; |
| 200 | |
| 201 | /** |
| 202 | * Exception class used by @ParsedArgs::CheckExclusiveOptions() |