com.wavefront.data.EmptyHistogramException Maven / Gradle / Ivy
The newest version!
package com.wavefront.data;
/**
* Empty histograms can be handled as a special case and not count against "blocked", if desired.
*
* @author [email protected]
*/
public class EmptyHistogramException extends DataValidationException {
public EmptyHistogramException(String message) {
super(message);
}
}