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