EOF exception

This commit is contained in:
Guilhem Lavaux 2009-01-08 09:18:28 -06:00
parent a6341d3378
commit 1b54cb0953

View File

@ -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