📄 noninvertibletransformexception.java
字号:
/*$************************************************************************************************ ** ** $Id: NoninvertibleTransformException.java,v 1.1 2004/05/06 15:51:51 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/operation/NoninvertibleTransformException.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.operation;/** * Thrown when {@link MathTransform#inverse} is * invoked but the transform can't be inverted. * * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version 1.0 * * @see org.opengis.referencing.operation.CoordinateOperationFactory */public class NoninvertibleTransformException extends TransformException { /** * Serial number for interoperability with different versions. */ private static final long serialVersionUID = 9184806660368158575L; /** * Construct an exception with no detail message. */ public NoninvertibleTransformException() { } /** * 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 NoninvertibleTransformException(String message) { super(message); } /** * Construct an exception with the specified detail message and cause. The cause * is typically an other {@link java.lang.geom.NoninvertibleTransformException} * emitted by Java2D. * * @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 NoninvertibleTransformException(String message, Throwable cause) { super(message); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -