Skip to content

Commit

Permalink
fix error code throwing
Browse files Browse the repository at this point in the history
  • Loading branch information
Thumimku committed Oct 24, 2024
1 parent 3700c48 commit 2b56319
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ private void handleUserProvisioning(String username, UserStoreManager userStoreM
associateUser(username, userStoreDomain, tenantDomain, subjectVal, idp);
} else {
throw new FrameworkException(
FrameworkErrorConstants.ErrorMessages.USER_ALREADY_EXISTS_ERROR.getMessage(),
FrameworkErrorConstants.ErrorMessages.USER_ALREADY_EXISTS_ERROR.getCode(), null);
FrameworkErrorConstants.ErrorMessages.USER_ALREADY_EXISTS_ERROR.getCode(),
FrameworkErrorConstants.ErrorMessages.USER_ALREADY_EXISTS_ERROR.getMessage(), null);
}
}
/*
Expand Down

0 comments on commit 2b56319

Please sign in to comment.