Skip to content

Commit

Permalink
Test Change
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuchavva committed Oct 17, 2024
1 parent 1ef196a commit 90dc041
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void onRefresh(String featuresJson) {
}

void handleError(FeatureFetchException e) {
e.printStackTrace();
//e.printStackTrace();

switch (e.getErrorCode()) {
case NO_RESPONSE_ERROR -> {
Expand All @@ -46,9 +46,7 @@ void handleError(FeatureFetchException e) {
// SSE is not applicable for this service but this was added here for completion.
}

case CONFIGURATION_ERROR, UNKNOWN -> {
throw new RuntimeException(e);
}
case CONFIGURATION_ERROR, UNKNOWN -> throw new RuntimeException(e);
}
}
}

0 comments on commit 90dc041

Please sign in to comment.