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

com.github.xingshuangs.iot.exceptions.SocketRuntimeException Maven / Gradle / Ivy

package com.github.xingshuangs.iot.exceptions;

/**
 * socket的运行异常
 *
 * @author xingshuang
 */
public class SocketRuntimeException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public SocketRuntimeException() {
        super();
    }

    public SocketRuntimeException(String message, Throwable cause) {
        super(message, cause);
    }

    public SocketRuntimeException(String message) {
        super(message);
    }

    public SocketRuntimeException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy