mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-05-08 13:34:58 +00:00
17 lines
376 B
C++
17 lines
376 B
C++
#include "BlockOverflowException.h"
|
|
|
|
BlockOverflowException::BlockOverflowException(XBlock* block)
|
|
{
|
|
m_block = block;
|
|
}
|
|
|
|
std::string BlockOverflowException::DetailedMessage()
|
|
{
|
|
return "XBlock " + m_block->m_name + " overflowed while trying to load zone.";
|
|
}
|
|
|
|
char const* BlockOverflowException::what() const noexcept
|
|
{
|
|
return "Invalid Zone. XBlock overflowed.";
|
|
}
|