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