Skip to content

Commit

Permalink
update error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
VivekVinushanth committed Mar 14, 2024
1 parent 8167e29 commit 1d72049
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public InboundAuthenticationRequestConfig handleConfigCreation(ServiceProvider s
try {
return createSAMLInbound(serviceProvider, saml2ProtocolConfigDTO);
} catch (IdentitySAML2ClientException e) {
throw new IdentityApplicationManagementClientException(e.getMessage(), e);
throw new IdentityApplicationManagementClientException(e.getErrorCode(), e.getMessage(), e);
} catch (IdentitySAML2SSOException e) {
throw new IdentityApplicationManagementException(e.getErrorCode(), e.getMessage(), e);
}
Expand Down

0 comments on commit 1d72049

Please sign in to comment.