⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cannotcreategridcoverageexception.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: CannotCreateGridCoverageException.java,v 1.6 2004/04/28 19:40:26 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/coverage/grid/CannotCreateGridCoverageException.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.coverage.grid;// J2SE direct depenciesimport java.io.IOException;/** * Thrown when a {@linkplain GridCoverage grid coverage} can't be created. * * @UML exception GC_CannotCreateGridCoverage * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version <A HREF="http://www.opengis.org/docs/01-004.pdf">Grid Coverage specification 1.0</A> * * @see GridCoverageReader#read * * @revisit In a J2SE 1.4 profile, this exception should extends *          {@link javax.imageio.IIOException}. */public class CannotCreateGridCoverageException extends IOException {    /**     * Serial number for interoperability with different versions.     */    private static final long serialVersionUID = 3768704221879769389L;    /**     * Creates an exception with no message.     */    public CannotCreateGridCoverageException() {        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 CannotCreateGridCoverageException(String message) {        super(message);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -