All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mosip.kernel.openid.bridge.api.exception.ClientException Maven / Gradle / Ivy

There is a newer version: 1.3.0-beta.1
Show newest version

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