2024-05-13 17:41:47 +02:00
|
|
|
/*
|
|
|
|
* ExceptionsCommon.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class DLL_LINKAGE DataLoadingException: public std::runtime_error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using std::runtime_error::runtime_error;
|
|
|
|
};
|
2024-06-01 13:49:51 +02:00
|
|
|
|
|
|
|
class DLL_LINKAGE ModLoadingException: public DataLoadingException
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ModLoadingException(const std::string & modName, const std::string & reason)
|
|
|
|
: DataLoadingException("Mod " + modName + " is corrupted! Please disable or reinstall this mod. Reason: " + reason)
|
|
|
|
{}
|
|
|
|
};
|