io.mosip.pmp.partner.exception.IllegalStateException Maven / Gradle / Ivy
package io.mosip.pmp.partner.exception;
/**
* Exception to be thrown when date format in filename pattern is wrong
*
* @author sanjeev.shrivastava
*
*/
public class IllegalStateException extends BaseUncheckedException {
private static final long serialVersionUID = 105555532L;
public IllegalStateException(String errorCode, String errorMessage) {
super(errorCode, errorMessage);
}
public IllegalStateException(String errorCode, String errorMessage, Throwable cause) {
super(errorCode, errorMessage, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy