com.launchdarkly.client.EvaluationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-client Show documentation
Show all versions of launchdarkly-client Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.client;
/**
* An error indicating an abnormal result from evaluating a feature
*/
class EvaluationException extends Exception {
public EvaluationException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy