1 | // |
---|---|
2 | // ZipException.cpp |
3 | // |
4 | // Library: Zip |
5 | // Package: Zip |
6 | // Module: ZipException |
7 | // |
8 | // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/Zip/ZipException.h" |
16 | #include <typeinfo> |
17 | |
18 | |
19 | namespace Poco { |
20 | namespace Zip { |
21 | |
22 | |
23 | POCO_IMPLEMENT_EXCEPTION(ZipException, Poco::RuntimeException, "ZIP Exception") |
24 | POCO_IMPLEMENT_EXCEPTION(ZipManipulationException, ZipException, "ZIP Manipulation Exception") |
25 | |
26 | |
27 | } } // namespace Poco::Zip |
28 |