![JAR search and dependency download from the Maven repository](/logo.png)
org.zbus.client.ZbusException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zbus-client Show documentation
Show all versions of zbus-client Show documentation
lightweight message queue, service bus
The newest version!
package org.zbus.client;
public class ZbusException extends RuntimeException {
private static final long serialVersionUID = 6006204188240205218L;
public ZbusException(String message){
super(message);
}
public ZbusException() {
super();
}
public ZbusException(String message, Throwable cause) {
super(message, cause);
}
public ZbusException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy