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