Skip to content

Commit

Permalink
Remove unnecessary exception catch.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpmadhavig committed Mar 25, 2024
1 parent 5a2419a commit 308f372
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,8 @@ private void removeAskPasswordConfirmationCodeThreadLocal() {
*
* @param count Requested item count.
* @return Validated count parameter.
* @throws CharonException If the count is negative.
*/
private int validateCountParameter(Integer count) throws CharonException {
private int validateCountParameter(Integer count) {

int maximumItemsPerPage = IdentityUtil.getMaximumItemPerPage();
if (count > maximumItemsPerPage) {
Expand Down

0 comments on commit 308f372

Please sign in to comment.