mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-14 02:57:45 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
38 lines
580 B
C++
38 lines
580 B
C++
//
|
|
// JSONException.h
|
|
//
|
|
// $Id$
|
|
//
|
|
// Library: JSON
|
|
// Package: JSON
|
|
// Module: JSONException
|
|
//
|
|
// Definition of the JSONException class.
|
|
//
|
|
// Copyright (c) 2012, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef JSON_JSONException_INCLUDED
|
|
#define JSON_JSONException_INCLUDED
|
|
|
|
|
|
#include "Poco/JSON/JSON.h"
|
|
#include "Poco/Exception.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace JSON {
|
|
|
|
|
|
POCO_DECLARE_EXCEPTION(JSON_API, JSONException, Poco::Exception)
|
|
|
|
|
|
}} // namespace Poco::JSON
|
|
|
|
|
|
#endif //JSON_JSONException_INCLUDED
|