io.mosip.pmp.partner.exception.PatternSyntaxException Maven / Gradle / Ivy
package io.mosip.pmp.partner.exception;
/**
* Unchecked exception thrown to indicate a syntax error in a regular-expression
* pattern
*
* @author sanjeev.shrivastava
*
*/
public class PatternSyntaxException extends BaseUncheckedException {
/** Serializable version Id. */
private static final long serialVersionUID = 123456202110630628L;
/**
* @param errorCode The error code defined for the exception
* @param errorMessage The error message defined for the exception
*/
public PatternSyntaxException(String errorCode, String errorMessage) {
super(errorCode, errorMessage);
}
/**
* @param errorCode The error code defined for the exception
* @param errorMessage The error message defined for the exception
* @param rootCause Traceback to the method throwing the error
*/
public PatternSyntaxException(String errorCode, String errorMessage, Throwable rootCause) {
super(errorCode, errorMessage, rootCause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy