mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-05-08 13:34:58 +00:00
12 lines
253 B
C++
12 lines
253 B
C++
#pragma once
|
|
#include "LoadingException.h"
|
|
|
|
class UnexpectedEndOfFileException final : public LoadingException
|
|
{
|
|
public:
|
|
UnexpectedEndOfFileException();
|
|
|
|
std::string DetailedMessage() override;
|
|
char const* what() const noexcept override;
|
|
};
|