1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.ast; 5 6 public class ParseException extends RuntimeException { 7 8 public ParseException() { 9 super(); 10 } 11 12 public ParseException(String message) { 13 super(message); 14 } 15 16 public ParseException(Throwable cause) { 17 super(cause); 18 } 19 20 public ParseException(String message, Throwable cause) { 21 super(message, cause); 22 } 23 }