io.katharsis.utils.parser.ParserException Maven / Gradle / Ivy
package io.katharsis.utils.parser;
import io.katharsis.errorhandling.exception.KatharsisMatchingException;
/**
* Thrown when parser exception occurs.
*/
class ParserException extends KatharsisMatchingException {
public ParserException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy