com.github.uscexp.grappa.extension.exception.PegParserGeneratorException 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.
The newest version!
/*
* Copyright (C) 2014 - 2016 by haui - all rights reserved
*/
package com.github.uscexp.grappa.extension.exception;
/**
* @author haui
*
*/
public class PegParserGeneratorException extends Exception {
private static final long serialVersionUID = 7417331963144862868L;
public PegParserGeneratorException(String message, Throwable cause) {
super(message, cause);
}
public PegParserGeneratorException(String message) {
super(message);
}
}