mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
16 lines
343 B
C++
16 lines
343 B
C++
#include "IPakLoadException.h"
|
|
|
|
IPakLoadException::IPakLoadException(std::string message)
|
|
{
|
|
m_message = std::move(message);
|
|
}
|
|
|
|
const std::string& IPakLoadException::DetailedMessage() const
|
|
{
|
|
return m_message;
|
|
}
|
|
|
|
char const* IPakLoadException::what() const noexcept
|
|
{
|
|
return "There was an error when trying to load an ipak file.";
|
|
} |