20#ifndef ORES_UTILITY_STRING_CONVERSION_ERROR_HPP
21#define ORES_UTILITY_STRING_CONVERSION_ERROR_HPP
24#include <boost/exception/info.hpp>
33 public virtual boost::exception {
36 : message_(std::move(message)) { }
39 const char* what()
const noexcept final {
return(message_.c_str()); }
Contains utility functions for strings.
Definition conversion_error.hpp:26
An error occurred whilst converting a string.
Definition conversion_error.hpp:33