mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2026-01-28 02:22:36 +00:00
29 lines
430 B
C++
Executable File
29 lines
430 B
C++
Executable File
//
|
|
// JSONException.cpp
|
|
//
|
|
// $Id$
|
|
//
|
|
// 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
|