mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 21:38:01 -05:00
13 lines
314 B
C++
13 lines
314 B
C++
#include "UnexpectedEndOfFileException.h"
|
|
|
|
UnexpectedEndOfFileException::UnexpectedEndOfFileException() = default;
|
|
|
|
std::string UnexpectedEndOfFileException::DetailedMessage()
|
|
{
|
|
return "Unexpected end of file";
|
|
}
|
|
|
|
char const* UnexpectedEndOfFileException::what() const
|
|
{
|
|
return "Unexpected end of file";
|
|
} |