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

com.acgist.snail.system.exception.NetException Maven / Gradle / Ivy

package com.acgist.snail.system.exception;

/**
 * 

网络异常

*

用途:{@linkplain com.acgist.snail.net 网络协议模块}

* * @author acgist * @since 1.0.0 */ public class NetException extends Exception { private static final long serialVersionUID = 1L; public NetException() { super("网络异常"); } public NetException(String message) { super(message); } public NetException(Throwable cause) { super(cause.getMessage(), cause); } public NetException(String message, Throwable cause) { super(message, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy