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

org.jetlinks.coap.exception.CoapException Maven / Gradle / Ivy

There is a newer version: 1.0.0-RC2
Show newest version
package org.jetlinks.coap.exception;

/**
 * @author guyi
 */
public class CoapException extends RuntimeException {

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

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

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

    public CoapException(String format, Object... args) {
        super(String.format(format, args));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy