mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-05-17 07:21:43 +00:00
16 lines
315 B
C++
16 lines
315 B
C++
#pragma once
|
|
|
|
#include <exception>
|
|
#include <string>
|
|
|
|
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;
|
|
};
|