in sdk-java/src/main/java/com/spotify/confidence/FlagEvaluation.java [14:25]
public FlagEvaluation(
@Nonnull T value,
@Nonnull String variant,
@Nonnull String reason,
@Nonnull ErrorType errorType,
@Nonnull String errorMessage) {
this.value = value;
this.variant = variant;
this.reason = reason;
this.errorType = Optional.of(errorType);
this.errorMessage = Optional.of(errorMessage);
}