mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-02 07:31:37 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
39 lines
695 B
C++
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
|