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

com.timgroup.statsd.StatsDClientException Maven / Gradle / Ivy

Go to download

A tiny library allowing Java applications to communicate with statsd instances easily.

There is a newer version: 3.1.0
Show newest version
package com.timgroup.statsd;


/**
 * Signals that an exception has occurred when trying to start the
 * StatsD client
 * 
 * @author Tom Denley
 * 
 */
public final class StatsDClientException extends RuntimeException {

    private static final long serialVersionUID = 3186887620964773839L;

    public StatsDClientException() {
        super();
    }

    public StatsDClientException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy