EOF exception
This commit is contained in:
parent
a6341d3378
commit
1b54cb0953
@ -92,6 +92,13 @@ namespace CosmoTool
|
|||||||
InvalidFileFormatException(const char *mess = 0)
|
InvalidFileFormatException(const char *mess = 0)
|
||||||
: Exception(mess) {}
|
: Exception(mess) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class EndOfFileException: public Exception
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
EndOfFileException(const char *mess = 0)
|
||||||
|
: Exception(mess) {}
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user