EOF exception
This commit is contained in:
parent
a6341d3378
commit
1b54cb0953
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue