mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-12 07:48:16 -05:00
Move XChunk processors to ZoneCommon
This commit is contained in:
16
src/ZoneCommon/Zone/XChunk/XChunkException.h
Normal file
16
src/ZoneCommon/Zone/XChunk/XChunkException.h
Normal file
@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#include <exception>
|
||||
#include <string>
|
||||
|
||||
#include "Utils/ClassUtils.h"
|
||||
|
||||
class XChunkException final : public std::exception
|
||||
{
|
||||
std::string m_message;
|
||||
|
||||
public:
|
||||
explicit XChunkException(std::string message);
|
||||
|
||||
_NODISCARD char const* what() const override;
|
||||
_NODISCARD const std::string& Message() const;
|
||||
};
|
Reference in New Issue
Block a user