DataNotFoundException.hpp 216 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 #pragma once #include <exception> #include <string> class DataNotFoundException : public std::runtime_error { public: explicit DataNotFoundException(const std::string &what) : std::runtime_error(what) {} };