20#ifndef ORES_DATABASE_REPOSITORY_REPOSITORY_EXCEPTION_HPP
21#define ORES_DATABASE_REPOSITORY_REPOSITORY_EXCEPTION_HPP
24#include <boost/exception/info.hpp>
26namespace ores::database::repository {
33 public virtual boost::exception {
36 : message_(message) {}
38 [[nodiscard]]
const char* what()
const noexcept override {
39 return message_.c_str();
A fatal error has occurred whilst reading or writing to the repository.
Definition repository_exception.hpp:33