1 package nl.javel.gisbeans.map; 2 3 /*** 4 * @author peter 5 * 6 * To change this generated comment edit the template variable "typecomment": 7 * Window>Preferences>Java>Templates. To enable and disable the creation of type 8 * comments go to Window>Preferences>Java>Code Generation. 9 */ 10 public class GraphicsException extends Exception 11 { 12 /*** 13 * constructs a new GraphicsException 14 */ 15 public GraphicsException() 16 { 17 super(); 18 } 19 20 /*** 21 * constructs a new GraphicsException 22 * 23 * @param msg the exception message 24 */ 25 public GraphicsException(String msg) 26 { 27 super(msg); 28 } 29 }