01: package org.geotools.referencing.operation.builder;
02:
03: import org.opengis.referencing.FactoryException;
04:
05: /**
06: * Thrown when a required operation can't be performed because some information is missing or isn't set up properly.
07: *
08: * @since 2.4
09: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/referencing/src/main/java/org/geotools/referencing/operation/builder/MissingInfoException.java $
10: * @version $Id: MissingInfoException.java 25075 2007-04-09 19:20:46Z desruisseaux $
11: * @author Jan Jezek
12: *
13: */
14: public class MissingInfoException extends FactoryException {
15:
16: /**
17: * Serial number for interoperability with different versions.
18: */
19: private static final long serialVersionUID = -3128525157353302290L;
20:
21: /**
22: * Constructs an exception with the specified detail message.
23: *
24: * @param message The cause for this exception. The cause is saved
25: * for later retrieval by the {@link #getCause()} method.
26: */
27: public MissingInfoException(String message) {
28: super (message);
29: }
30:
31: /**
32: * Constructs an exception with no detail message.
33: */
34: public MissingInfoException() {
35: super();
36: }
37: }
|