20#ifndef ORES_COMMS_SERVICE_APP_APPLICATION_EXCEPTION_HPP
21#define ORES_COMMS_SERVICE_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 for the server binary.
Definition application.hpp:30
A fatal error has occurred whilst the application was running.
Definition application_exception.hpp:32