KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > facelets > FaceletException


1 /**
2  * Licensed under the Common Development and Distribution License,
3  * you may not use this file except in compliance with the License.
4  * You may obtain a copy of the License at
5  *
6  * http://www.sun.com/cddl/
7  *
8  * Unless required by applicable law or agreed to in writing, software
9  * distributed under the License is distributed on an "AS IS" BASIS,
10  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
11  * implied. See the License for the specific language governing
12  * permissions and limitations under the License.
13  */

14
15 package com.sun.facelets;
16
17 import javax.faces.FacesException;
18
19 /**
20  * An Exception from Facelet implementation
21  *
22  * @author Jacob Hookom
23  * @version $Id: FaceletException.java,v 1.2 2005/08/24 04:38:58 jhook Exp $
24  */

25 public class FaceletException extends FacesException {
26
27     /**
28      *
29      */

30     private static final long serialVersionUID = 1L;
31
32     /**
33      *
34      */

35     public FaceletException() {
36         super();
37     }
38
39     /**
40      * @param message
41      */

42     public FaceletException(String JavaDoc message) {
43         super(message);
44     }
45
46     /**
47      * @param cause
48      */

49     public FaceletException(Throwable JavaDoc cause) {
50         super(cause);
51     }
52
53     /**
54      * @param message
55      * @param cause
56      */

57     public FaceletException(String JavaDoc message, Throwable JavaDoc cause) {
58         super(message, cause);
59     }
60
61 }
62
Popular Tags