operationnotfoundexception.java
来自「GEo 地理操作源代码」· Java 代码 · 共 45 行
JAVA
45 行
/*$************************************************************************************************ ** ** $Id: OperationNotFoundException.java,v 1.3 2004/04/28 19:40:27 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/coverage/processing/OperationNotFoundException.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.coverage.processing;/** * Throws if an operation name given to * <code>{@linkplain GridCoverageProcessor#doOperation doOperation}(…)</code> * is not a know operation. * * @UML exception GP_OperationNotFound * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version <A HREF="http://www.opengis.org/docs/01-004.pdf">Grid Coverage specification 1.0</A> */public class OperationNotFoundException extends IllegalArgumentException { /** * Serial number for interoperability with different versions. */ private static final long serialVersionUID = 8654574655958181935L; /** * Creates an exception with no message. */ public OperationNotFoundException() { 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 OperationNotFoundException(String message) { super(message); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?