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

io.mosip.credentialstore.exception.VerCredException Maven / Gradle / Ivy

package io.mosip.credentialstore.exception;

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

public class VerCredException extends BaseUncheckedException {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	

	public VerCredException(String errorCode, String errorMessage) {
		super(errorCode, errorMessage);
    }

	public VerCredException(String errorCode, String errorMessage, Throwable e) {
		super(errorCode, errorMessage, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy