20#ifndef ORES_COMPUTE_WRAPPER_CONFIG_PARSER_EXCEPTION_HPP
21#define ORES_COMPUTE_WRAPPER_CONFIG_PARSER_EXCEPTION_HPP
24#include <boost/exception/info.hpp>
26namespace ores::compute::wrapper::config {
32 public virtual boost::exception {
35 : message_(message) {}
37 [[nodiscard]]
const char* what()
const noexcept override {
38 return message_.c_str();
A fatal error has occurred during option parsing.
Definition parser_exception.hpp:32