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

io.codemodder.javaparser.JavaParseException Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy