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

com.github.cm.heclouds.adapter.exceptions.InvalidMqttTopicException Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.github.cm.heclouds.adapter.exceptions;

/**
 * MQTT Topic无效异常
 */
public final class InvalidMqttTopicException extends RuntimeException {
    public InvalidMqttTopicException(Throwable cause) {
        super(cause);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy