mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 22:38:06 -05:00
17 lines
339 B
C++
17 lines
339 B
C++
#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 noexcept override;
|
|
_NODISCARD const std::string& Message() const;
|
|
};
|