We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99bd988 commit 36f5832Copy full SHA for 36f5832
src/main/java/dev/openfeature/sdk/exceptions/FlagNotFoundError.java
@@ -9,4 +9,9 @@
9
public class FlagNotFoundError extends OpenFeatureError {
10
private static final long serialVersionUID = 1L;
11
@Getter private final ErrorCode errorCode = ErrorCode.FLAG_NOT_FOUND;
12
+
13
+ @Override
14
+ public synchronized Throwable fillInStackTrace() {
15
+ return this;
16
+ }
17
}
0 commit comments