package at.oefai.aaa.agent.jam;

/**
 * This exception is thrown when parse errors are encountered.
 * It normally wraps ANTLRExceptions.
 * @author Stefan Rank
 */
public class ParseException extends Exception {

  /**
   * Just wraps another Exception.
   */
  public ParseException(final Throwable t) {
    super(t);
  }

  /**
   * Just wraps an exception string.
   */
  public ParseException(final String s) {
    super(s);
  }
}
