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

io.zbus.mq.MqException Maven / Gradle / Ivy

There is a newer version: 1.0.0-b1
Show newest version
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