View Javadoc

1   /*
2    * Copyright  2004 The Apache Software Foundation.
3    *
4    *  Licensed under the Apache License, Version 2.0 (the "License");
5    *  you may not use this file except in compliance with the License.
6    *  You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
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   */
17  package org.apache.kandula.faults;
18  
19  /***
20   * @author <a href="mailto:thilina@opensource.lk"> Thilina Gunarathne </a>
21   */
22  public class KandulaGeneralException extends AbstractKandulaException {
23  
24  	/***
25  	 * 
26  	 */
27  	private static final long serialVersionUID = 3605851255933308674L;
28  
29  	/***
30  	 * 
31  	 */
32  	public KandulaGeneralException(Exception e) {
33  		super(e);
34  	}
35  
36  	public KandulaGeneralException(String s, Exception e) {
37  		super(s, e);
38  	}
39  
40  	public KandulaGeneralException(String string) {
41  		super(string);
42  	}
43  
44  	/*
45  	 * (non-Javadoc)
46  	 * 
47  	 * @see org.apache.kandula.faults.AbstractKandulaException#getFaultCode()
48  	 */
49  	public String getFaultCode() {
50  
51  		return null;
52  	}
53  
54  	/*
55  	 * (non-Javadoc)
56  	 * 
57  	 * @see org.apache.kandula.faults.AbstractKandulaException#getFaultSubcode()
58  	 */
59  	public String getFaultSubcode() {
60  
61  		return null;
62  	}
63  
64  	/*
65  	 * (non-Javadoc)
66  	 * 
67  	 * @see org.apache.kandula.faults.AbstractKandulaException#getFaultReason()
68  	 */
69  	public String getFaultReason() {
70  
71  		return null;
72  	}
73  
74  }