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

gw.lang.javac.JavaCompileIssuesException Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
package gw.lang.javac;

import javax.tools.DiagnosticCollector;
import javax.tools.JavaFileObject;

/**
 */
public class JavaCompileIssuesException extends RuntimeException
{
  private DiagnosticCollector _errorHandler;

  public JavaCompileIssuesException( DiagnosticCollector errorHandler )
  {
    _errorHandler = errorHandler;
  }

  public DiagnosticCollector getErrorHandler()
  {
    return _errorHandler;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy