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

com.ringcentral.platform.metrics.NotMeasuredException Maven / Gradle / Ivy

package com.ringcentral.platform.metrics;

import com.ringcentral.platform.metrics.measurables.Measurable;

public class NotMeasuredException extends RuntimeException {

    public static NotMeasuredException forMeasurable(Measurable m) {
        return new NotMeasuredException(m + " is not measured");
    }

    public NotMeasuredException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy