01: /*
02: * Copyright 2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package javax.faces;
17:
18: /**
19: * see Javadoc of <a href="http://java.sun.com/javaee/javaserverfaces/1.2/docs/api/index.html">JSF Specification</a>
20: *
21: * @author Manfred Geiler (latest modification by $Author: mbr $)
22: * @version $Revision: 512227 $ $Date: 2007-02-27 13:25:16 +0100 (Di, 27 Feb 2007) $
23: */
24: public class FacesException extends RuntimeException {
25: private static final long serialVersionUID = 6592152487577416317L;
26:
27: public FacesException() {
28: super ();
29: }
30:
31: public FacesException(Throwable cause) {
32: super (cause);
33: }
34:
35: public FacesException(String message) {
36: super (message);
37: }
38:
39: public FacesException(String message, Throwable cause) {
40: super (message, cause);
41: }
42:
43: public Throwable getCause() {
44: return super.getCause();
45: }
46: }
|