Skip to content

Commit

Permalink
Added AST Batching support
Browse files Browse the repository at this point in the history
  • Loading branch information
jsight committed May 7, 2015
1 parent f26ff76 commit 17d74a8
Show file tree
Hide file tree
Showing 13 changed files with 1,460 additions and 1,264 deletions.
@@ -1,7 +1,7 @@
package org.jboss.windup.ast.java;

/**
* Thrown due to errors parsing Java source with the {@link ASTProcessor}
* Thrown due to errors parsing Java source with the {@link ASTReferenceResolver}
*
* @author <a href="mailto:jesse.sightler@gmail.com">Jesse Sightler</a>
*
Expand All @@ -10,24 +10,28 @@ public class ASTException extends RuntimeException
{
private static final long serialVersionUID = 1L;

/**
* Create an exception.
*/
public ASTException()
{
super();
}

/**
* Create an exception with the given message and cause.
*/
public ASTException(String message, Throwable cause)
{
super(message, cause);
}

/**
* Create an exception with the given message.
*/
public ASTException(String message)
{
super(message);
}

public ASTException(Throwable cause)
{
super(cause);
}

}

0 comments on commit 17d74a8

Please sign in to comment.