io.mosip.kernel.openid.bridge.api.exception.ClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kernel-openid-bridge-api Show documentation
Show all versions of kernel-openid-bridge-api Show documentation
Mosip Open-ID-Connect bridge API
package io.mosip.kernel.openid.bridge.api.exception;
import io.mosip.kernel.core.exception.BaseUncheckedException;
public class ClientException extends BaseUncheckedException {
private static final long serialVersionUID = 4060346018688709387L;
/**
* Constructor the initialize Handler exception
*
* @param errorCode The error code for this exception
* @param errorMessage The error message for this exception
*/
public ClientException(String errorCode, String errorMessage) {
super(errorMessage, errorCode);
}
public ClientException(String errorCode, String errorMessage, Throwable cause) {
super(errorMessage, errorCode, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy