mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-07-03 09:41:50 +00:00
Read IW4 signed headers
This commit is contained in:
11
src/ZoneLoading/Loading/Exception/InvalidHashException.cpp
Normal file
11
src/ZoneLoading/Loading/Exception/InvalidHashException.cpp
Normal file
@ -0,0 +1,11 @@
|
||||
#include "InvalidHashException.h"
|
||||
|
||||
std::string InvalidHashException::DetailedMessage()
|
||||
{
|
||||
return "Loaded fastfile has an invalid hash.";
|
||||
}
|
||||
|
||||
char const* InvalidHashException::what() const
|
||||
{
|
||||
return "Loaded fastfile has an invalid hash.";
|
||||
}
|
9
src/ZoneLoading/Loading/Exception/InvalidHashException.h
Normal file
9
src/ZoneLoading/Loading/Exception/InvalidHashException.h
Normal file
@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
#include "LoadingException.h"
|
||||
|
||||
class InvalidHashException final : public LoadingException
|
||||
{
|
||||
public:
|
||||
std::string DetailedMessage() override;
|
||||
char const* what() const override;
|
||||
};
|
Reference in New Issue
Block a user