diff --git a/src/config.hpp b/src/config.hpp index 4674a94..8d8a4be 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -92,6 +92,13 @@ namespace CosmoTool InvalidFileFormatException(const char *mess = 0) : Exception(mess) {} }; + + class EndOfFileException: public Exception + { + public: + EndOfFileException(const char *mess = 0) + : Exception(mess) {} + }; }; #endif