package us.deans.panther; import java.util.ArrayList; /** Base Class for the Panther framework */ public class ppBaseClass { private ArrayList exceptionList; public ppBaseClass(){ } public ArrayList getExceptionList(){ return this.exceptionList; } /** @author - Nigel Deans - 2010 */ }