@class parse_error * @brief std::exception subclass that is thrown if the parser * can not parse the arguments. */
| 50 | * can not parse the arguments. |
| 51 | */ |
| 52 | struct parse_error : std::runtime_error |
| 53 | { |
| 54 | /** @brief Construct the exception with the string to be |
| 55 | * return by what() |
| 56 | */ |
| 57 | template <typename T> |
| 58 | parse_error(T&& what_arg) : std::runtime_error{std::forward<T>(what_arg)} |
| 59 | {} |
| 60 | }; // parse_error |
| 61 | |
| 62 | /** @class strict_parsing |
| 63 | * |