2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-09 04:31:49 +00:00
Files
OpenAssetTools/src/ObjLoading/ObjContainer/IPak/Exception/IPakLoadException.cpp
2021-03-03 09:12:27 -08:00

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.";
}