mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
10 lines
208 B
C++
10 lines
208 B
C++
#pragma once
|
|
#include "LoadingException.h"
|
|
|
|
class InvalidHashException final : public LoadingException
|
|
{
|
|
public:
|
|
std::string DetailedMessage() override;
|
|
char const* what() const noexcept override;
|
|
};
|