mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
11 lines
244 B
C++
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.";
|
|
} |