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