com.timgroup.statsd.StatsDClientErrorHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-statsd-client Show documentation
Show all versions of java-statsd-client Show documentation
A tiny library allowing Java applications to communicate with statsd instances easily.
package com.timgroup.statsd;
/**
* Describes a handler capable of processing exceptions that occur during StatsD client operations.
*
* @author Tom Denley
*
*/
public interface StatsDClientErrorHandler {
/**
* Handle the given exception, which occurred during a StatsD client operation.
*
* @param exception
* the {@link Exception} that occurred
*/
void handle(Exception exception);
}