OpenAssetTools/src/ZoneLoading/Loading/Exception/UnexpectedEndOfFileException.cpp

13 lines
314 B
C++

#include "UnexpectedEndOfFileException.h"
UnexpectedEndOfFileException::UnexpectedEndOfFileException() = default;
std::string UnexpectedEndOfFileException::DetailedMessage()
{
return "Unexpected end of file";
}
char const* UnexpectedEndOfFileException::what() const
{
return "Unexpected end of file";
}