mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-05-08 13:34:58 +00:00
15 lines
310 B
C++
15 lines
310 B
C++
#pragma once
|
|
#include "LoadingException.h"
|
|
#include "Zone/XBlock.h"
|
|
|
|
class BlockOverflowException final : public LoadingException
|
|
{
|
|
XBlock* m_block;
|
|
|
|
public:
|
|
explicit BlockOverflowException(XBlock* block);
|
|
|
|
std::string DetailedMessage() override;
|
|
char const* what() const noexcept override;
|
|
};
|