mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-15 21:17:25 +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.";
|
|
} |