001/*****************************************************************************
002 *                          J3D.org Copyright (c) 2000
003 *                                Java Source
004 *
005 * This source is licensed under the GNU LGPL v2.1
006 * Please read http://www.gnu.org/copyleft/lgpl.html for more information
007 *
008 ****************************************************************************/
009
010package jahuwaldt.j3d.geom;
011
012// Standard imports
013// none
014
015// Application specific imports
016// none
017
018/**
019 * Exception for when one of the requested geometry generation types is not
020 * known or understood.
021 * <P>
022 *
023 * @author Justin Couch
024 * @version $Revision: 1.1 $
025 */
026public class UnsupportedTypeException extends RuntimeException {
027
028    /**
029     * Create a blank exception with no message
030     */
031    public UnsupportedTypeException() {
032    }
033
034    /**
035     * Create an exception that contains the given message.
036     *
037     * @param msg The message to associate with this exception
038     */
039    public UnsupportedTypeException(String msg) {
040        super(msg);
041    }
042}