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

io.mosip.preregistration.batchjob.exception.RestCallException Maven / Gradle / Ivy

There is a newer version: 1.3.0-beta.1
Show newest version
package io.mosip.preregistration.batchjob.exception;

import io.mosip.kernel.core.exception.BaseUncheckedException;

public class RestCallException extends BaseUncheckedException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 4166660574837976618L;
	
	public RestCallException(String message) {
		super("",message);
	}
	public RestCallException(String errorCode, String errorMessage) {
		super(errorCode, errorMessage);
	}

	public RestCallException(String errorCode, String errorMessage, Throwable rootCause) {
		super(errorCode, errorMessage, rootCause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy