01 package net.sourceforge.pmd.lang.ast;
02
03 public class ParseException extends RuntimeException {
04
05 public ParseException() {
06 super();
07 }
08
09 public ParseException(String message) {
10 super(message);
11 }
12
13 public ParseException(Throwable cause) {
14 super(cause);
15 }
16
17 public ParseException(String message, Throwable cause) {
18 super(message, cause);
19 }
20 }
|