Back to project page magdaa-library.
The source code is released under:
GNU General Public License
If you think the Android project magdaa-library listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.zeroturnaround.zip; /* w ww. j a v a2s .c om*/ @SuppressWarnings("serial") public class ZipException extends RuntimeException { public ZipException(String msg) { super(msg); } public ZipException(Exception e) { super(e); } }