
io.mosip.kernel.vidgenerator.exception.VidGeneratorServiceException Maven / Gradle / Ivy
package io.mosip.kernel.vidgenerator.exception;
import io.mosip.kernel.core.exception.BaseUncheckedException;
/**
* Exception class for handling different exceptions in the service.
*
* @author Urvil Joshi
* @since 1.0.0
*
*/
public class VidGeneratorServiceException extends BaseUncheckedException {
/**
* Generated Serialzed version ID.
*/
private static final long serialVersionUID = 7542790575912622884L;
/**
* Constructor for the exception class with errorCode and errorMessage as the
* argument.
*
* @param errorCode the error code.
* @param errorMessage the error message.
*/
public VidGeneratorServiceException(String errorCode, String errorMessage) {
super(errorCode, errorMessage);
}
public VidGeneratorServiceException(String errorCode, String errorMessage, Throwable cause) {
super(errorCode, errorMessage, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy