📄 metadatanamenotfoundexception.java
字号:
/*$************************************************************************************************ ** ** $Id: MetadataNameNotFoundException.java,v 1.5 2004/04/28 19:40:01 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/coverage/MetadataNameNotFoundException.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.coverage;/** * Thrown when a requested metadata is not found. * * @UML exception CV_MetadataNameNotFound * @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> * * @see SampleDimension#getMetadataValue * @see Coverage#getMetadataValue * @see org.opengis.coverage.grid.GridCoverageReader#getMetadataValue * @see org.opengis.coverage.processing.GridCoverageProcessor#getMetadataValue */public class MetadataNameNotFoundException extends IllegalArgumentException { /** * Serial number for interoperability with different versions. */ private static final long serialVersionUID = 3217010469714161299L; /** * Creates an exception with no message. */ public MetadataNameNotFoundException() { 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 MetadataNameNotFoundException(String message) { super(message); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -