
/**
 * InsuffientFundsException.java
 *
 *
 * Created: Wed Sep 18 21:35:02 2002
 *
 * @author <a href="mailto: "</a>
 * @version
 */

public class InsufficientFundsException extends Exception{
   public InsufficientFundsException (String msg){
      super(msg);
   }
   public InsufficientFundsException()
   {
      super("Insufficient Fund Exception");
   }
}// InsuffientFundsException
