All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.apanlh.exp.zip.ZipDecompressException Maven / Gradle / Ivy

There is a newer version: 2.0.0.2
Show newest version
package com.gitee.apanlh.exp.zip;
	
/**	
 * 	ZIP解压异常
 * 	#mark 增加压缩异常类型
 * 	@author Pan
 */
public class ZipDecompressException extends RuntimeException {
	
	private static final long serialVersionUID = 1L;

	public ZipDecompressException(Exception e) {
		super(e);
	}
	
	public ZipDecompressException(String msg) {
		super(msg);
	}
	
	public ZipDecompressException(String msg, Throwable cause) {
		super(msg, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy