misc changes
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.jtidy / src / net / sourceforge / phpdt / tidy / actions / ParseFailedException.java
1 /**
2  * Created on 13.01.2003 by Jan Schulz
3  */
4 package net.sourceforge.phpdt.tidy.actions;
5
6 /**
7  * @author jan
8  * @since 13.01.2003
9  */
10 public class ParseFailedException extends Exception {
11
12         /**
13          * Constructor for ParseFailedException.
14          */
15         public ParseFailedException() {
16                 super();
17         }
18
19         /**
20          * Constructor for ParseFailedException.
21          * @param message
22          */
23         public ParseFailedException(String message) {
24                 super(message);
25         }
26
27         /**
28          * Constructor for ParseFailedException.
29          * @param message
30          * @param cause
31          */
32         public ParseFailedException(String message, Throwable cause) {
33                 super(message, cause);
34         }
35
36         /**
37          * Constructor for ParseFailedException.
38          * @param cause
39          */
40         public ParseFailedException(Throwable cause) {
41                 super(cause);
42         }
43         
44         /* (non-Javadoc)
45          * @see java.lang.Throwable#fillInStackTrace()
46          */
47         public synchronized Throwable fillInStackTrace() {
48                 return this;
49         }
50
51
52 }