OpenAssetTools/src/ZoneLoading/Loading/Exception/BlockOverflowException.h
2021-03-03 09:12:27 -08:00

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;
};