io.zbus.mq.MqException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zbus Show documentation
Show all versions of zbus Show documentation
a lightweight yet powerful MQ and RPC to build service bus
package io.zbus.mq;
public class MqException extends RuntimeException {
private static final long serialVersionUID = 6006204188240205218L;
public MqException(String message){
super(message);
}
public MqException() {
super();
}
public MqException(String message, Throwable cause) {
super(message, cause);
}
public MqException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy