Skip to content

Commit

Permalink
Issue #9656 Use ISE for PushBuilderImpl.push not IAE (#9667)
Browse files Browse the repository at this point in the history
  • Loading branch information
janbartel authored Apr 24, 2023
1 parent 5b4a013 commit c7c3dad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void push()
{
String pushPath = getPath();
if (pushPath == null || pushPath.isBlank())
throw new IllegalArgumentException("invalid push path: " + pushPath);
throw new IllegalStateException("invalid push path: " + pushPath);

String query = getQueryString();
String pushQuery = query;
Expand Down

0 comments on commit c7c3dad

Please sign in to comment.