20#ifndef ORES_TRADING_SERVICE_APP_APPLICATION_EXCEPTION_HPP
21#define ORES_TRADING_SERVICE_APP_APPLICATION_EXCEPTION_HPP
24#include <boost/exception/info.hpp>
26namespace ores::trading::service::app {
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 whilst the application was running.
Definition application_exception.hpp:32