Own-Programming-Language-Tu.../src/com/annimon/ownlang/parser/ParseException.java

16 lines
264 B
Java

package com.annimon.ownlang.parser;
/**
*
* @author aNNiMON
*/
public final class ParseException extends RuntimeException {
public ParseException() {
super();
}
public ParseException(String string) {
super(string);
}
}