mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-19 03:57:14 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
37 lines
633 B
C++
37 lines
633 B
C++
//
|
|
// ZipException.h
|
|
//
|
|
// 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
|