mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
15 lines
335 B
C++
15 lines
335 B
C++
#pragma once
|
|
#include "LoadingException.h"
|
|
#include "Zone/ZoneTypes.h"
|
|
|
|
class InvalidOffsetBlockException final : public LoadingException
|
|
{
|
|
block_t m_referenced_block;
|
|
|
|
public:
|
|
explicit InvalidOffsetBlockException(block_t referencedBlock);
|
|
|
|
std::string DetailedMessage() override;
|
|
char const* what() const override;
|
|
};
|