nosuchclassificationexception.java
来自「GEo 地理操作源代码」· Java 代码 · 共 52 行
JAVA
52 行
/*$************************************************************************************************ ** ** $Id: NoSuchClassificationException.java,v 1.1 2004/05/06 15:51:50 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/NoSuchClassificationException.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing;/** * Thrown when a {@linkplain org.opengis.referencing.operation.MathTransform math transform} * was requested with an unknow classification name. * * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version 1.0 * * @see org.opengis.referencing.operation.MathTransformFactory#createParameterizedTransform */public class NoSuchClassificationException extends FactoryException { /** * Serial number for interoperability with different versions. */ private static final long serialVersionUID = 6749721413001501976L; /** * The classification name. */ private final String classification; /** * Construct an exception with the specified detail message and classification name. * * @param message The detail message. The detail message is saved * for later retrieval by the {@link #getMessage()} method. * @param classification The classification name. */ public NoSuchClassificationException(final String message, final String classification) { super(message); this.classification = classification; } /** * Returns the classification name. */ public String getClassification() { return classification; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?