mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-07-03 09:41:50 +00:00
Add AuthedBlocks processor for IW4 fastfiles
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
#include "TooManyAuthedGroupsException.h"
|
||||
|
||||
std::string TooManyAuthedGroupsException::DetailedMessage()
|
||||
{
|
||||
return "Loaded fastfile has too many authed groups.";
|
||||
}
|
||||
|
||||
char const* TooManyAuthedGroupsException::what() const
|
||||
{
|
||||
return "Loaded fastfile has too many authed groups.";
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
#include "LoadingException.h"
|
||||
|
||||
class TooManyAuthedGroupsException final : public LoadingException
|
||||
{
|
||||
public:
|
||||
std::string DetailedMessage() override;
|
||||
char const* what() const override;
|
||||
};
|
Reference in New Issue
Block a user