KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > savant > SavantException


1 /*
2  * Copyright (c) 2003-2004, Inversoft, All Rights Reserved
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.savant;
8
9
10 /**
11  * <p>
12  * This class is the main exception thrown when the Savant
13  * dependency system fails for some reason.
14  * </p>
15  *
16  * @author Brian Pontarelli
17  */

18 public class SavantException extends Exception JavaDoc {
19     public SavantException() {
20         super();
21     }
22
23     public SavantException(String JavaDoc message) {
24         super(message);
25     }
26
27     public SavantException(Throwable JavaDoc cause) {
28         super(cause);
29     }
30
31     public SavantException(String JavaDoc message, Throwable JavaDoc cause) {
32         super(message, cause);
33     }
34 }
35
Popular Tags