1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00
vcmi/lib/json/JsonFormatException.h
2024-02-26 12:55:49 +02:00

21 lines
415 B
C++

/*
* 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
class DLL_LINKAGE JsonFormatException : public std::runtime_error
{
public:
using runtime_error::runtime_error;
};
VCMI_LIB_NAMESPACE_END