1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-04 09:42:40 +02:00
vcmi/lib/json/JsonFormatException.h

21 lines
415 B
C++
Raw Normal View History

2024-02-13 18:08:35 +02:00
/*
* JsonFormatException.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
VCMI_LIB_NAMESPACE_BEGIN
2024-02-19 17:46:26 +02:00
class DLL_LINKAGE JsonFormatException : public std::runtime_error
2024-02-13 18:08:35 +02:00
{
public:
using runtime_error::runtime_error;
};
VCMI_LIB_NAMESPACE_END