mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-26 06:11:53 +00:00
12 lines
292 B
C++
12 lines
292 B
C++
#include "TooManyAuthedGroupsException.h"
|
|
|
|
std::string TooManyAuthedGroupsException::DetailedMessage()
|
|
{
|
|
return "Loaded fastfile has too many authed groups.";
|
|
}
|
|
|
|
char const* TooManyAuthedGroupsException::what() const noexcept
|
|
{
|
|
return "Loaded fastfile has too many authed groups.";
|
|
}
|