io.mosip.kernel.uingenerator.exception.UinNotFoundException Maven / Gradle / Ivy
The newest version!
package io.mosip.kernel.uingenerator.exception;
import io.mosip.kernel.core.exception.BaseUncheckedException;
/**
* Custom exception for Uin Not Found Exception
*
* @author Dharmesh Khandelwal
* @since 1.0.0
*
*/
public class UinNotFoundException extends BaseUncheckedException {
/**
* The generated serial version id
*/
private static final long serialVersionUID = -4878056037301351184L;
/**
* Constructor the initialize UinNotFoundException
*
* @param errorCode The errorcode for this exception
* @param errorMessage The error message for this exception
*/
public UinNotFoundException(String errorCode, String errorMessage) {
super(errorCode, errorMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy