#pragma once #include #include namespace yage { class FileLoadException : public std::runtime_error { public: FileLoadException(std::string err); virtual const char *what() const throw(); private: std::string err_msg; }; } // namespace yage