mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 21:38:01 -05:00
15 lines
289 B
C++
15 lines
289 B
C++
#pragma once
|
|
#include <exception>
|
|
#include <string>
|
|
|
|
class IPakLoadException final : public std::exception
|
|
{
|
|
std::string m_message;
|
|
|
|
public:
|
|
explicit IPakLoadException(std::string message);
|
|
|
|
const std::string& DetailedMessage() const;
|
|
char const* what() const override;
|
|
};
|