com.signalfuse.metrics.SignalfuseMetricsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signalfuse-java Show documentation
Show all versions of signalfuse-java Show documentation
Bare minimum core library needed to sending metrics to SignalFuse from Java clients
package com.signalfuse.metrics;
public class SignalfuseMetricsException extends RuntimeException {
private static final long serialVersionUID = 1L;
public SignalfuseMetricsException() {
}
public SignalfuseMetricsException(String message) {
super(message);
}
public SignalfuseMetricsException(String message, Throwable cause) {
super(message, cause);
}
public SignalfuseMetricsException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy