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

com.gitee.apanlh.exp.StreamReadException 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 StreamReadException extends StreamException { private static final long serialVersionUID = 1L; public StreamReadException(Exception e) { super(e); } public StreamReadException(String msg) { super(msg); } public StreamReadException(String msg, Throwable cause) { super(msg, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy