01: /**
02: * Title: OpenUSS - Open Source University Support System
03: * My Piggy Bank Example
04: * Description: Enhydra Presentation Object
05: * Copyright: Copyright (c) 2003 by B. Lofi Dewanto, T. Menzel
06: * Company: University of Muenster, HTWK Leipzig
07: * @author B. Lofi Dewanto, T. Menzel
08: * @version 1.1
09: */package net.sourceforge.ejosa.piggybank.presentation.enhydra;
10:
11: import org.openuss.presentation.enhydra.framework.*;
12:
13: /**
14: * The base exception presentation object for foundation components.
15: *
16: * @author B. Lofi Dewanto, T. Menzel
17: * @version 1.1
18: */
19: public class FoundationPOException extends BasePOException {
20: /**
21: * Public constructor to initialize an exception with a user message
22: * and the exception that spawned it
23: */
24: public FoundationPOException(String msg, Exception ex) {
25: super(msg, ex);
26: }
27: }
|