Skip to content

Commit

Permalink
runtimeexception -> illegalstateexception
Browse files Browse the repository at this point in the history
  • Loading branch information
Feuermagier committed Sep 23, 2024
1 parent bea3004 commit 2931317
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ private void askForPassword(CredentialItem.Password passwordItem) {
});
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new RuntimeException(e);
throw new IllegalStateException(e);
} catch (InvocationTargetException e) {
throw new RuntimeException(e);
throw new IllegalStateException(e);
}
}
}
Expand Down

0 comments on commit 2931317

Please sign in to comment.