01: /*
02: * Geotools2 - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002-2005, 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: package org.geotools.referencing.operation.builder;
17:
18: /**
19: * Thrown when it is unable to generate TIN.
20: *
21: * @since 2.4
22: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/referencing/src/main/java/org/geotools/referencing/operation/builder/TriangulationException.java $
23: * @version $Id: TriangulationException.java 28982 2008-01-28 16:27:33Z acuster $
24: * @author Jan Jezek
25: */
26: public class TriangulationException extends RuntimeException {
27: private static final long serialVersionUID = -3134565178815225915L;
28:
29: /**
30: * Constructs an exception with the specified detail message.
31: *
32: * @param message The cause for this exception. The cause is saved
33: * for later retrieval by the {@link #getCause()} method.
34: */
35: public TriangulationException(String message) {
36: super (message);
37: }
38:
39: /**
40: * Constructs an exception with no detail message.
41: */
42: public TriangulationException() {
43: super();
44: }
45: }
|