Skip to content

Commit

Permalink
change exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
atakavci committed Nov 18, 2024
1 parent 7f0310f commit 3dbf6dc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ private static String getMessage(Exception identityProviderFailedWith) {
if (identityProviderFailedWith == null) {
return msg;
}
return msg + " Identity provider failed with: " + identityProviderFailedWith.getMessage();
return msg + " Identity provider request failed!"
+ identityProviderFailedWith.getMessage();
}

}

0 comments on commit 3dbf6dc

Please sign in to comment.