org.geotools.ct
Class CannotCreateTransformException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.opengis.referencing.operation.TransformException
              extended byorg.geotools.ct.CannotCreateTransformException
All Implemented Interfaces:
java.io.Serializable

Deprecated. Replaced by OperationNotFoundException.

public class CannotCreateTransformException
extends org.opengis.referencing.operation.TransformException

Thrown when a coordinate transformation can't be created. It may be because there is no known path between source and coordinate systems, or because the requested transformation is not available in the environment.

Version:
$Id: CannotCreateTransformException.java 17673 2006-01-19 04:34:34Z desruisseaux $
Author:
Martin Desruisseaux
See Also:
Serialized Form

Constructor Summary
CannotCreateTransformException()
          Deprecated. Construct an exception with no detail message.
CannotCreateTransformException(CoordinateSystem sourceCS, CoordinateSystem targetCS)
          Deprecated. Construct an exception with a message stating that no transformation path has been found between the specified coordinate systems.
CannotCreateTransformException(CoordinateSystem sourceCS, CoordinateSystem targetCS, java.lang.Throwable cause)
          Deprecated. Construct an exception with a message stating that no transformation path has been found between the specified coordinate systems.
CannotCreateTransformException(java.lang.String message)
          Deprecated. Construct an exception with the specified detail message.
CannotCreateTransformException(java.lang.String message, java.lang.Throwable cause)
          Deprecated. Construct an exception with the specified detail message and cause.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CannotCreateTransformException

public CannotCreateTransformException()
Deprecated. 
Construct an exception with no detail message.


CannotCreateTransformException

public CannotCreateTransformException(java.lang.String message)
Deprecated. 
Construct an exception with the specified detail message.

Parameters:
message - The details message.

CannotCreateTransformException

public CannotCreateTransformException(java.lang.String message,
                                      java.lang.Throwable cause)
Deprecated. 
Construct an exception with the specified detail message and cause.

Parameters:
message - The details message.
cause - The cause for this exception.

CannotCreateTransformException

public CannotCreateTransformException(CoordinateSystem sourceCS,
                                      CoordinateSystem targetCS)
Deprecated. 
Construct an exception with a message stating that no transformation path has been found between the specified coordinate systems.

Parameters:
sourceCS - The source coordinate system.
targetCS - The target coordinate system.

CannotCreateTransformException

public CannotCreateTransformException(CoordinateSystem sourceCS,
                                      CoordinateSystem targetCS,
                                      java.lang.Throwable cause)
Deprecated. 
Construct an exception with a message stating that no transformation path has been found between the specified coordinate systems.

Parameters:
sourceCS - The source coordinate system.
targetCS - The target coordinate system.
cause - The cause for the failure.


Copyright © GeoTools. All Rights Reserved.