-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix codecov, throw in memory provider
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
- Loading branch information
Showing
3 changed files
with
57 additions
and
40 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
src/main/java/dev/openfeature/sdk/exceptions/ProviderNotReadyError.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package dev.openfeature.sdk.exceptions; | ||
|
||
import dev.openfeature.sdk.ErrorCode; | ||
import lombok.Getter; | ||
import lombok.experimental.StandardException; | ||
|
||
@SuppressWarnings("checkstyle:MissingJavadocType") | ||
@StandardException | ||
public class ProviderNotReadyError extends OpenFeatureError { | ||
private static final long serialVersionUID = 1L; | ||
@Getter private final ErrorCode errorCode = ErrorCode.PROVIDER_NOT_READY; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters