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

📄 transformexception.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: TransformException.java,v 1.1 2004/05/06 15:51:51 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/operation/TransformException.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.operation;// OpenGIS direct dependenciesimport org.opengis.spatialschema.geometry.DirectPosition;  // For javadoc/** * Common superclass for a number of transformation-related exceptions. * <code>TransformException</code> are thrown by {@link MathTransform} * when a coordinate transformation can't be {@linkplain MathTransform#inverse inverted} * ({@link NoninvertibleTransformException}), when the * {@linkplain MathTransform#derivative derivative} can't be computed or when a coordinate * can't be {@linkplain MathTransform#transform(DirectPosition,DirectPosition) transformed}. * It is also thrown when {@link CoordinateOperationFactory} fails to find a path between two * {@linkplain org.opengis.referencing.crs.CoordinateReferenceSystem coordinate reference systems}. * * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version 1.0 */public class TransformException extends Exception {    /**     * Serial number for interoperability with different versions.     */    private static final long serialVersionUID = -8923944544398567533L;    /**     * Construct an exception with no detail message.     */    public TransformException() {    }    /**     * Construct an exception with the specified detail message.     *     * @param  message The detail message. The detail message is saved     *         for later retrieval by the {@link #getMessage()} method.     */    public TransformException(String message) {        super(message);    }    /**     * Construct an exception with the specified detail message and cause.     *     * @param  message The detail message. The detail message is saved     *         for later retrieval by the {@link #getMessage()} method.     * @param  cause The cause for this exception. The cause is saved     *         for later retrieval by the {@link #getCause()} method.     */    public TransformException(String message, Throwable cause) {        super(message);    }}

⌨️ 快捷键说明

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