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

org.apache.ratis.thirdparty.info.ganglia.gmetric4j.gmetric.GangliaException Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package org.apache.ratis.thirdparty.info.ganglia.gmetric4j.gmetric;

/**
 *
 * @author humphrej
 */
public class GangliaException extends Exception {
	private static final long serialVersionUID = 1L;

	/**
     * Creates a new instance of GangliaException without detail message.
     */
    public GangliaException() {
    }


    /**
     * Constructs an instance of GangliaException with the specified detail message.
     * @param msg the detail message.
     */
    public GangliaException(String msg) {
        super(msg);
    }
    
    /**
     * Constructs an instance of GangliaException with the specified detail message and cause.
     * @param msg the detail message
     * @param cause the cause
     */
    public GangliaException( String msg, Throwable cause ) {
        super( msg, cause );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy