| org.geotools.referencing.operation.TransformPathNotFoundException
TransformPathNotFoundException | public class TransformPathNotFoundException extends TransformException (Code) | | Thrown when a transformation can't be performed because no path from
to
has been found.
This exception usually wraps an
OperationNotFoundException thrown
by an
.
This exception is sometime used in order to collapse a
throws FactoryException, TransformException
clause (in method signature) into a single
throws TransformException
clause, i.e. in order to hide the factory step into a more general transformation processus
from the API point of view.
since: 2.2 version: $Id: TransformPathNotFoundException.java 20874 2006-08-07 10:00:01Z jgarnett $ author: Martin Desruisseaux |
TransformPathNotFoundException | public TransformPathNotFoundException()(Code) | | Constructs an exception with no detail message.
|
TransformPathNotFoundException | public TransformPathNotFoundException(FactoryException cause)(Code) | | Constructs an exception with the specified detail message.
Parameters: cause - The cause for this exception. The cause is savedfor later retrieval by the TransformPathNotFoundException.getCause() method. |
TransformPathNotFoundException | public TransformPathNotFoundException(String message)(Code) | | Constructs an exception with the specified detail message.
Parameters: message - The detail message. The detail message is savedfor later retrieval by the TransformPathNotFoundException.getMessage() method. |
|
|