20#ifndef ORES_CLI_CONFIG_PARSER_EXCEPTION_HPP
21#define ORES_CLI_CONFIG_PARSER_EXCEPTION_HPP
24#include <boost/exception/info.hpp>
32 public virtual boost::exception {
35 : message_(message) {}
37 [[nodiscard]]
const char* what()
const noexcept override {
38 return message_.c_str();
Configuration and command-line parsing for the CLI tool.
Definition add_account_options.hpp:27
A fatal error has occurred during option parsing.
Definition parser_exception.hpp:32