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

org.zbus.client.ZbusException Maven / Gradle / Ivy

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