001 /*
002 * NotEnoughPointsException.java
003 *
004 * Created on March 4, 2003, 2:41 PM
005 */
006
007 package cs101.awt.geom;
008
009 /**
010 *
011 * @author gus
012 */
013 public class NotEnoughPointsException extends java.lang.Exception {
014
015 /**
016 * Creates a new instance of <code>NotEnoughPointsException</code> without detail message.
017 */
018 public NotEnoughPointsException() {
019 }
020
021
022 /**
023 * Constructs an instance of <code>NotEnoughPointsException</code> with the specified detail message.
024 * @param msg the detail message.
025 */
026 public NotEnoughPointsException(String msg) {
027 super(msg);
028 }
029 }