DataNotFoundException.hpp 216 Bytes
#pragma once

#include <exception>
#include <string>

class DataNotFoundException : public std::runtime_error {
  public:
	explicit DataNotFoundException(const std::string &what)
	    : std::runtime_error(what) {}
};