Skip to content

Commit

Permalink
Fix error response detail and SCIM type variables swap
Browse files Browse the repository at this point in the history
  • Loading branch information
KD23243 committed Jun 26, 2024
1 parent 1ffe27b commit e240fd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public BadRequestException() {
}

public BadRequestException(String scimType) {
this(ResponseCodeConstants.DESC_BAD_REQUEST, scimType);
this(scimType, ResponseCodeConstants.DESC_BAD_REQUEST);
}

public BadRequestException(String details, String scimType) {
Expand Down

0 comments on commit e240fd3

Please sign in to comment.