01: /*
02: * Geotools2 - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002-2006, Geotools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: */
17: package org.geotools.arcsde.data;
18:
19: /**
20: * Exception that can be thrown if an error occurs while creating a
21: * <code>Geometryy</code> from a <code>SeShape</code> or viceversa
22: *
23: * @author Gabriel Rold?n
24: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/unsupported/arcsde/datastore/src/main/java/org/geotools/arcsde/data/ArcSDEGeometryBuildingException.java $
25: * @version $Id: ArcSDEGeometryBuildingException.java 24660 2007-03-02 16:10:44Z saul.farber $
26: */
27: public class ArcSDEGeometryBuildingException extends Exception {
28: /**
29: * Creates a new ArcSDEGeometryBuildingException object.
30: *
31: * @param msg
32: * DOCUMENT ME!
33: */
34: public ArcSDEGeometryBuildingException(String msg) {
35: this (msg, null);
36: }
37:
38: /**
39: * Creates a new ArcSDEGeometryBuildingException object.
40: *
41: * @param msg
42: * DOCUMENT ME!
43: * @param cause
44: * DOCUMENT ME!
45: */
46: public ArcSDEGeometryBuildingException(String msg, Throwable cause) {
47: super(msg, cause);
48: }
49: }
|