1//
2// JSONException.cpp
3//
4// Library: JSON
5// Package: JSON
6// Module: JSONException
7//
8// Copyright (c) 2012, Applied Informatics Software Engineering GmbH.
9// and Contributors.
10//
11// SPDX-License-Identifier: BSL-1.0
12//
13
14
15#include "Poco/JSON/JSONException.h"
16#include <typeinfo>
17
18
19namespace Poco {
20namespace JSON {
21
22
23POCO_IMPLEMENT_EXCEPTION(JSONException, Exception, "JSON Exception")
24
25
26} } // namespace Poco::JSON
27