Skip to content

Commit

Permalink
Merge pull request wso2#6174 from Thisara-Welmilla/improve-IdentityPr…
Browse files Browse the repository at this point in the history
…oviderManagementClientException-class

Improvement to the IdentityProviderManagementClientException class.
  • Loading branch information
Thisara-Welmilla authored Dec 4, 2024
2 parents ec52ff3 + 145665f commit 2b156a6
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
public class IdentityProviderManagementClientException extends IdentityProviderManagementException {

private String description;

public IdentityProviderManagementClientException(String message) {

super(message);
Expand All @@ -42,4 +44,15 @@ public IdentityProviderManagementClientException(String errorCode, String messag

super(errorCode, message, throwable);
}

public IdentityProviderManagementClientException(String errorCode, String message, String description) {

super(errorCode, message);
this.description = description;
}

public String getDescription() {

return description;
}
}

0 comments on commit 2b156a6

Please sign in to comment.