2 * Created on 13.01.2003 by Jan Schulz
4 package net.sourceforge.phpdt.tidy.actions;
10 public class ParseFailedException extends Exception {
13 * Constructor for ParseFailedException.
15 public ParseFailedException() {
20 * Constructor for ParseFailedException.
23 public ParseFailedException(String message) {
28 * Constructor for ParseFailedException.
32 public ParseFailedException(String message, Throwable cause) {
33 super(message, cause);
37 * Constructor for ParseFailedException.
40 public ParseFailedException(Throwable cause) {
45 * @see java.lang.Throwable#fillInStackTrace()
47 public synchronized Throwable fillInStackTrace() {