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

com.gitee.apanlh.exp.StreamCopyException Maven / Gradle / Ivy

There is a newer version: 2.0.0.2
Show newest version
package com.gitee.apanlh.exp;

/**	
 * 	流拷贝相关异常
 * 	
包含IO流、文件流等 * * @author Pan */ public class StreamCopyException extends StreamException { private static final long serialVersionUID = 1L; public StreamCopyException(Exception e) { super(e); } public StreamCopyException(String msg) { super(msg); } public StreamCopyException(String msg, Throwable cause) { super(msg, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy