Move XChunk processors to ZoneCommon

This commit is contained in:
Jan
2021-03-16 20:42:48 +01:00
parent ca1329323b
commit f22012d282
33 changed files with 383 additions and 317 deletions

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