001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/model/coverage/CannotEvaluateException.java $ 002 /*$************************************************************************************************ 003 ** 004 ** $Id: CannotEvaluateException.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 * The base class for exceptions thrown when a quantity can't be evaluated. This exception is 017 * usually invoked by a <code>Coverage.evaluate(PT_CoordinatePoint)</code> method, for example 018 * when a point is outside the coverage. 019 * 020 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> 021 * @author last edited by: $Author: bezema $ 022 * 023 * @version $Revision: 6259 $, $Date: 2007-03-20 10:15:15 +0100 (Di, 20 Mär 2007) $ 024 * 025 * @see "org.opengis.coverage.Coverage" 026 */ 027 public class CannotEvaluateException extends RuntimeException { 028 /** 029 * Serial number for interoperability with different versions. 030 */ 031 private static final long serialVersionUID = 506793649975583062L; 032 033 /** 034 * Creates an exception with no message. 035 */ 036 public CannotEvaluateException() { 037 super(); 038 } 039 040 /** 041 * Creates an exception with the specified message. 042 * 043 * @param message 044 * The detail message. The detail message is saved for later retrieval by the 045 * {@link #getMessage()} method. 046 */ 047 public CannotEvaluateException( String message ) { 048 super( message ); 049 } 050 } 051 /*************************************************************************************************** 052 * <code> 053 Changes to this class. What the people have been up to: 054 $Log$ 055 Revision 1.2 2007/03/06 13:38:55 wanhoff 056 Fixed Javadoc (@see) 057 058 Revision 1.1 2007/02/09 17:28:00 poth 059 *** empty log message *** 060 061 Revision 1.3 2006/11/26 18:17:49 poth 062 unnecessary cast removed / code formatting 063 064 Revision 1.2 2006/07/13 06:28:31 poth 065 comment footer added 066 067 </code> 068 **************************************************************************************************/