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

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

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

/**	
 * 	IP地址相关异常
 * 	
 * 	@author Pan
 */
public class IpAddrException extends RuntimeException {
	
	private static final long serialVersionUID = 1L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy