20#ifndef ORES_CLI_APP_APPLICATION_EXCEPTION_HPP
21#define ORES_CLI_APP_APPLICATION_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();
Application hosting infrastructure for the CLI tool.
Definition application.hpp:45
A fatal error has occurred whilst the application was running.
Definition application_exception.hpp:32