All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opengis.referencing.operation.TransformException Maven / Gradle / Ivy

There is a newer version: 24.2-oss84-1
Show newest version
/*
 *    GeoTools - The Open Source Java GIS Toolkit
 *    http://geotools.org
 *
 *    (C) 2011, Open Source Geospatial Foundation (OSGeo)
 *    (C) 2003-2005, Open Geospatial Consortium Inc.
 *
 *    All Rights Reserved. http://www.opengis.org/legal/
 */
package org.opengis.referencing.operation;

import org.opengis.geometry.DirectPosition; // For javadoc

/**
 * Common superclass for a number of transformation-related exceptions. {@code TransformException}
 * 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 Martin Desruisseaux (IRD)
 * @since GeoAPI 1.0
 */
public class TransformException extends Exception {
    /** Serial number for interoperability with different versions. */
    private static final long serialVersionUID = -8923944544398567533L;

    /**
     * The last transform that either transformed successfuly all coordinates, or filled the
     * untransformable coordinates with {@linkplain Double#NaN NaN} values. This information is
     * useful in the context of concatenated transforms. May be {@code null} if unknown.
     *
     * @see #getLastCompletedTransform
     * @see #setLastCompletedTransform
     * @since GeoAPI 2.2
     */
    private MathTransform lastCompletedTransform;

    /** Constructs an exception with no detail message. */
    public TransformException() {}

    /**
     * Constructs 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);
    }

    /**
     * Constructs 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, cause);
    }

    /**
     * Returns the last transform that either transformed successfuly all coordinates, or filled the
     * untransformable coordinates with {@linkplain Double#NaN NaN} values. This information is
     * useful in the context of concatenated transforms. May be {@code null} if unknown.
     *
     * @return The last reliable transform.
     * @since GeoAPI 2.2
     */
    public MathTransform getLastCompletedTransform() {
        return lastCompletedTransform;
    }

    /**
     * Sets the last transform that either transformed successfuly all coordinates, or filled the
     * untransformable coordinates with {@linkplain Double#NaN NaN} values.
     *
     * @param transform The last reliable transform.
     * @since GeoAPI 2.2
     */
    public void setLastCompletedTransform(final MathTransform transform) {
        lastCompletedTransform = transform;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy