001    //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/io/shpapi/shape_new/ShapeGeometryException.java $
002    /*----------------    FILE HEADER  ------------------------------------------
003     This file is part of deegree.
004     Copyright (C) 2001-2006 by:
005     Department of Geography, University of Bonn
006     http://www.giub.uni-bonn.de/deegree/
007     lat/lon GmbH
008     http://www.lat-lon.de
009    
010     This library is free software; you can redistribute it and/or
011     modify it under the terms of the GNU Lesser General Public
012     License as published by the Free Software Foundation; either
013     version 2.1 of the License, or (at your option) any later version.
014    
015     This library is distributed in the hope that it will be useful,
016     but WITHOUT ANY WARRANTY; without even the implied warranty of
017     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
018     Lesser General Public License for more details.
019    
020     You should have received a copy of the GNU Lesser General Public
021     License along with this library; if not, write to the Free Software
022     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
023    
024     Contact:
025    
026     Andreas Poth
027     lat/lon GmbH
028     Aennchenstr. 19
029     53177 Bonn
030     Germany
031     E-Mail: poth@lat-lon.de
032    
033     Prof. Dr. Klaus Greve
034     Department of Geography
035     University of Bonn
036     Meckenheimer Allee 166
037     53115 Bonn
038     Germany
039     E-Mail: greve@giub.uni-bonn.de
040    
041     ---------------------------------------------------------------------------*/
042    package org.deegree.io.shpapi.shape_new;
043    
044    /**
045     * <code>ShapeGeometryException</code> is used to indicate a failure of the deegree geometry
046     * subsystem or the shapefile API.
047     * 
048     * @author <a href="mailto:schmitz@lat-lon.de">Andreas Schmitz</a>
049     * @author last edited by: $Author: bezema $
050     * 
051     * @version $Revision: 6259 $, $Date: 2007-03-20 10:15:15 +0100 (Di, 20 Mär 2007) $
052     */
053    public class ShapeGeometryException extends RuntimeException {
054    
055        /**
056         * For serialization.
057         */
058        private static final long serialVersionUID = 8475462974850026793L;
059    
060        /**
061         * @param message
062         * @param cause
063         */
064        public ShapeGeometryException( String message, Throwable cause ) {
065            super( message, cause );
066        }
067        
068    }
069    
070    /***************************************************************************************************
071     * <code>
072     Changes to this class. What the people have been up to:
073    
074     $Log$
075     Revision 1.1  2007/02/26 14:26:49  schmitz
076     Added a new implementation of the ShapeFile API that implements the Z and M variants of the datatypes as well.
077     Also added some basic tests for the API as well as a new version of the GML/Shape converters.
078    
079     </code>
080     **************************************************************************************************/