17 lines
426 B
Java
17 lines
426 B
Java
package dev.openfeature.sdk.exceptions;
|
|
|
|
import dev.openfeature.sdk.ErrorCode;
|
|
import lombok.Getter;
|
|
import lombok.experimental.StandardException;
|
|
|
|
/**
|
|
* An error was encountered parsing data, such as a flag configuration.
|
|
*/
|
|
@StandardException
|
|
public class ParseError extends OpenFeatureError {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Getter private final ErrorCode errorCode = ErrorCode.PARSE_ERROR;
|
|
|
|
}
|