01: /**
02: * Title: OpenUSS - Open Source University Support System
03: * Description: BaseException Table Object
04: * Copyright: Copyright (c) B. Lofi Dewanto
05: * Company: University of Muenster
06: * @author B. Lofi Dewanto
07: * @version 1.0
08: */package org.openuss.presentation.enhydra.framework;
09:
10: /**
11: * The base exception table object for Enhydra.
12: *
13: * @author B. Lofi Dewanto
14: * @version 1.0
15: */
16: public class BaseTableException extends java.lang.Exception {
17: /**
18: * Constructor.
19: */
20: public BaseTableException() {
21: super ();
22: }
23:
24: /**
25: * Constructor.
26: */
27: public BaseTableException(String msg) {
28: super(msg);
29: }
30: }
|