org.deegree_impl.model.ct
Class TransformException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.deegree_impl.model.ct.TransformException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
CannotCreateTransformException, NoninvertibleTransformException

public class TransformException
extends java.lang.Exception

Common superclass for a number of transformation-related exceptions. It may be thrown by MathTransform when a coordinate can't be transformed. It may also be thrown when a coordinate transformation can't be created or inverted.

Version:
1.0
Author:
André Gosselin, Martin Desruisseaux
See Also:
Serialized Form

Field Summary
private static long serialVersionUID
          Serial number for interoperability with different versions.
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
TransformException()
          Constructs a new exception with no detail message.
TransformException(java.lang.String message)
          Constructs a new exception with the specified detail message.
TransformException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new 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
 

Field Detail

serialVersionUID

private static final long serialVersionUID
Serial number for interoperability with different versions.

See Also:
Constant Field Values
Constructor Detail

TransformException

public TransformException()
Constructs a new exception with no detail message.


TransformException

public TransformException(java.lang.String message)
Constructs a new exception with the specified detail message.


TransformException

public TransformException(java.lang.String message,
                          java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.