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; /* www.j a v a 2s. c om*/ @SuppressWarnings("serial") public class ZipBreakException extends RuntimeException { public ZipBreakException(String msg) { super(msg); } public ZipBreakException(Exception e) { super(e); } public ZipBreakException() { super(); } }