1 package net.sourceforge.pmd.lang.ast; 2 3 public class ParseException extends RuntimeException { 4 5 public ParseException() { 6 super(); 7 } 8 9 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 }