Skip to content

Commit

Permalink
back to re-throw exception
Browse files Browse the repository at this point in the history
  • Loading branch information
vaisakhkannan committed Nov 7, 2024
1 parent d5a1c00 commit c93a8dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ private void validateAsynchronousAnnotation(PsiMethod node, PsiAnnotation annota
},
e -> {
LOGGER.log(Level.WARNING, "An error occurred", e);
throw new RuntimeException("Failed to validate asynchronous annotation", e);
throw e;
}
);

Expand Down

0 comments on commit c93a8dd

Please sign in to comment.