001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/model/coverage/PointOutsideCoverageException.java $ 002 /*$************************************************************************************************ 003 ** 004 ** $Id: PointOutsideCoverageException.java 6259 2007-03-20 09:15:15Z bezema $ 005 ** 006 ** $Source$ 007 ** 008 ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ 009 ** 010 *************************************************************************************************/ 011 package org.deegree.model.coverage; 012 013 // OpenGIS direct dependencies 014 015 /** 016 * Thrown when a 017 * <code>org.opengis.coverage.Coverage.evaluate</code> 018 * method is invoked with a point outside coverage. 019 * 020 * @UML exception CV_PointOutsideCoverage 021 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> 022 * @version <A HREF="http://www.opengis.org/docs/01-004.pdf">Grid Coverage specification 1.0</A> 023 * 024 */ 025 public class PointOutsideCoverageException extends CannotEvaluateException { 026 /** 027 * Serial number for interoperability with different versions. 028 */ 029 private static final long serialVersionUID = -8718412090539227101L; 030 031 /** 032 * Creates an exception with no message. 033 */ 034 public PointOutsideCoverageException() { 035 super(); 036 } 037 038 /** 039 * Creates an exception with the specified message. 040 * 041 * @param message The detail message. The detail message is saved for 042 * later retrieval by the {@link #getMessage()} method. 043 */ 044 public PointOutsideCoverageException( String message ) { 045 super( message ); 046 } 047 } 048 /* ******************************************************************** 049 Changes to this class. What the people have been up to: 050 $Log$ 051 Revision 1.1 2007/02/09 17:28:00 poth 052 *** empty log message *** 053 054 Revision 1.3 2006/11/26 18:17:49 poth 055 unnecessary cast removed / code formatting 056 057 Revision 1.2 2006/07/13 06:28:31 poth 058 comment footer added 059 060 ********************************************************************** */