OpenAssetTools/src/ZoneLoading/Loading/Exception/InvalidHashException.cpp
2020-09-06 14:39:19 +02:00

11 lines
244 B
C++

#include "InvalidHashException.h"
std::string InvalidHashException::DetailedMessage()
{
return "Loaded fastfile has an invalid hash.";
}
char const* InvalidHashException::what() const
{
return "Loaded fastfile has an invalid hash.";
}