KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openuss > presentation > enhydra > framework > BaseTableException


1 /**
2  * Title: OpenUSS - Open Source University Support System
3  * Description: BaseException Table Object
4  * Copyright: Copyright (c) B. Lofi Dewanto
5  * Company: University of Muenster
6  * @author B. Lofi Dewanto
7  * @version 1.0
8  */

9 package org.openuss.presentation.enhydra.framework;
10
11 /**
12  * The base exception table object for Enhydra.
13  *
14  * @author B. Lofi Dewanto
15  * @version 1.0
16  */

17 public class BaseTableException extends java.lang.Exception JavaDoc {
18     /**
19      * Constructor.
20      */

21     public BaseTableException() {
22         super();
23     }
24
25     /**
26      * Constructor.
27      */

28     public BaseTableException(String JavaDoc msg) {
29         super(msg);
30     }
31 }
Popular Tags