com.github.uscexp.grappa.extension.exception.AstInterpreterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grappa.extension Show documentation
Show all versions of grappa.extension Show documentation
Extension for parboiled/grappa parser.
/*
* Copyright (C) 2014 by haui - all rights reserved
*/
package com.github.uscexp.grappa.extension.exception;
/**
* @author haui
*
*/
public class AstInterpreterException extends Exception {
private static final long serialVersionUID = -330014265655391953L;
public AstInterpreterException(String message, Throwable cause) {
super(message, cause);
}
public AstInterpreterException(String message) {
super(message);
}
}