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

com.almondtools.stringsandchars.regex.RegexCompileException Maven / Gradle / Ivy

package com.almondtools.stringsandchars.regex;

public class RegexCompileException extends RuntimeException {

	public RegexCompileException(String pattern, int pos, String missing) {
		super("Regular expression " + pattern + " fails to compile at position " + pos + ", missing: " + missing);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy