mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-26 09:44:58 +02:00
27 lines
419 B
C++
27 lines
419 B
C++
//
|
|
// JSONException.cpp
|
|
//
|
|
// Library: JSON
|
|
// Package: JSON
|
|
// Module: JSONException
|
|
//
|
|
// Copyright (c) 2012, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/JSON/JSONException.h"
|
|
#include <typeinfo>
|
|
|
|
|
|
namespace Poco {
|
|
namespace JSON {
|
|
|
|
|
|
POCO_IMPLEMENT_EXCEPTION(JSONException, Exception, "JSON Exception")
|
|
|
|
|
|
} } // namespace Poco::JSON
|