io.codemodder.javaparser.JavaParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-base Show documentation
Show all versions of codemodder-base Show documentation
Base framework for writing codemods in Java
package io.codemodder.javaparser;
import java.io.IOException;
/** Exception that indicates a failure to parse a Java file. */
public class JavaParseException extends IOException {
public JavaParseException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy