mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-12 07:48:16 -05:00
12 lines
254 B
C++
12 lines
254 B
C++
#include "InvalidHashException.h"
|
|
|
|
std::string InvalidHashException::DetailedMessage()
|
|
{
|
|
return "Loaded fastfile has an invalid hash.";
|
|
}
|
|
|
|
char const* InvalidHashException::what() const noexcept
|
|
{
|
|
return "Loaded fastfile has an invalid hash.";
|
|
}
|