formatting change

This commit is contained in:
ChUrl
2020-12-14 18:17:48 +01:00
parent de88d650d3
commit ce92dcad6e
6 changed files with 5 additions and 11 deletions

View File

@ -6,12 +6,8 @@ import static util.Logger.log;
public class ParseException extends RuntimeException {
public ParseException(String message) {
super(message);
}
public ParseException(String message, AST ast) {
super(message);
super("\n" + message);
log("\nAST at last state:\n" + ast);
}