cannotevaluateexception.java
来自「GEo 地理操作源代码」· Java 代码 · 共 51 行
JAVA
51 行
/*$************************************************************************************************ ** ** $Id: CannotEvaluateException.java,v 1.6 2004/04/28 19:40:00 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/coverage/CannotEvaluateException.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.coverage;// OpenGIS direct dependenciesimport org.opengis.spatialschema.geometry.DirectPosition; // For Javadoc/** * The base class for exceptions thrown when a quantity can't be evaluated. * This exception is usually invoked by a * <code>Coverage.{@linkplain Coverage#evaluate(DirectPosition, double[]) evaluate}(…)</code> * method, for example when a point is outside the coverage. * * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version 1.0 * * @see Coverage#evaluate(DirectPosition, byte[]) * @see Coverage#evaluate(DirectPosition, double[]) */public class CannotEvaluateException extends RuntimeException { /** * Serial number for interoperability with different versions. */ private static final long serialVersionUID = 506793649975583062L; /** * Creates an exception with no message. */ public CannotEvaluateException() { super(); } /** * Creates an exception with the specified message. * * @param message The detail message. The detail message is saved for * later retrieval by the {@link #getMessage()} method. */ public CannotEvaluateException(String message) { super(message); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?