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

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

There is a newer version: 0.98.6
Show newest version
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