/** * Exceptions that get thrown when you try to add to a full structure. * * @author Samuel A. Rebelsky * @version 1.0 of April 2003 */ public class FullStructureException extends Exception { public FullStructureException() { super(); } // FullStructureException() public FullStructureException(String msg) { super(msg); } // FullStructureException(msg) } // FullStructureException