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