01: //$HeadURL: https://svn.wald.intevation.org/svn/deegree/base/trunk/src/org/deegree/model/coverage/grid/CannotCreateGridCoverageException.java $
02: /*---------------- FILE HEADER ------------------------------------------
03:
04: This file is part of deegree.
05: Copyright (C) 2001-2008 by:
06: EXSE, Department of Geography, University of Bonn
07: http://www.giub.uni-bonn.de/deegree/
08: lat/lon GmbH
09: http://www.lat-lon.de
10:
11: This library is free software; you can redistribute it and/or
12: modify it under the terms of the GNU Lesser General Public
13: License as published by the Free Software Foundation; either
14: version 2.1 of the License, or (at your option) any later version.
15:
16: This library is distributed in the hope that it will be useful,
17: but WITHOUT ANY WARRANTY; without even the implied warranty of
18: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19: Lesser General Public License for more details.
20:
21: You should have received a copy of the GNU Lesser General Public
22: License along with this library; if not, write to the Free Software
23: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24:
25: Contact:
26:
27: Andreas Poth
28: lat/lon GmbH
29: Aennchenstr. 19
30: 53115 Bonn
31: Germany
32: E-Mail: poth@lat-lon.de
33:
34: Prof. Dr. Klaus Greve
35: Department of Geography
36: University of Bonn
37: Meckenheimer Allee 166
38: 53115 Bonn
39: Germany
40: E-Mail: greve@giub.uni-bonn.de
41:
42:
43: ---------------------------------------------------------------------------*/
44: package org.deegree.model.coverage.grid;
45:
46: // J2SE direct depencies
47: import java.io.IOException;
48:
49: /**
50: * Thrown when a {@linkplain GridCoverage grid coverage} can't be created.
51: *
52: * @UML exception GC_CannotCreateGridCoverage
53: * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A>
54: * @version <A HREF="http://www.opengis.org/docs/01-004.pdf">Grid Coverage specification 1.0</A>
55: *
56: * @see GridCoverageReader#read
57: *
58: * @revisit In a J2SE 1.4 profile, this exception should extends {@link javax.imageio.IIOException}.
59: */
60: public class CannotCreateGridCoverageException extends IOException {
61: /**
62: * Serial number for interoperability with different versions.
63: */
64: private static final long serialVersionUID = 3768704221879769389L;
65:
66: /**
67: * Creates an exception with no message.
68: */
69: public CannotCreateGridCoverageException() {
70: super ();
71: }
72:
73: /**
74: * Creates an exception with the specified message.
75: *
76: * @param message
77: * The detail message. The detail message is saved for later retrieval by the
78: * {@link #getMessage()} method.
79: */
80: public CannotCreateGridCoverageException(String message) {
81: super(message);
82: }
83: }
|