1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package javax.faces;
20
21 /***
22 * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
23 *
24 * @author Manfred Geiler (latest modification by $Author: grantsmith $)
25 * @version $Revision: 472558 $ $Date: 2006-11-08 17:36:53 +0000 (Wed, 08 Nov 2006) $
26 */
27 public class FacesException
28 extends RuntimeException
29 {
30 private static final long serialVersionUID = 6592152487577416317L;
31
32 public FacesException()
33 {
34 super();
35 }
36
37 public FacesException(Throwable cause)
38 {
39 super(cause);
40 }
41
42 public FacesException(String message)
43 {
44 super(message);
45 }
46
47 public FacesException(String message,
48 Throwable cause)
49 {
50 super(message, cause);
51 }
52
53 public Throwable getCause()
54 {
55 return super.getCause();
56 }
57 }