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

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

package com.github.xingshuangs.iot.exceptions;

/**
 * MC通信异常
 *
 * @author xingshuang
 */
public class McCommException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public McCommException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy