poco/Zip/include/Poco/Zip/ZipException.h
Roger Meier b0581433a7 LICENSE: add info about SPDX-License-Identifier usage and use it
fix: remove executable flag and change back to 100644 (was 100755)

Signed-off-by: Roger Meier <r.meier@siemens.com>
2014-05-14 08:38:09 +02:00

39 lines
695 B
C++

//
// ZipException.h
//
// $Id: //poco/1.4/Zip/include/Poco/Zip/ZipException.h#1 $
//
// Library: Zip
// Package: Zip
// Module: ZipException
//
// Definition of the ZipException class.
//
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef Zip_ZipException_INCLUDED
#define Zip_ZipException_INCLUDED
#include "Poco/Zip/Zip.h"
#include "Poco/Exception.h"
namespace Poco {
namespace Zip {
POCO_DECLARE_EXCEPTION(Zip_API, ZipException, Poco::RuntimeException)
POCO_DECLARE_EXCEPTION(Zip_API, ZipManipulationException, ZipException)
} } // namespace Poco::Zip
#endif // Zip_ZipException_INCLUDED