Class OperationNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opengis.util.FactoryException
-
- org.opengis.referencing.operation.OperationNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class OperationNotFoundException extends FactoryException
Thrown when a coordinate operation is not found. It may be because there is no known path between source and target coordinate reference systems, or because the requested operation is not available in the environment.- Since:
- 1.0
- Version:
- 3.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial number for inter-operability with different versions.
-
Constructor Summary
Constructors Constructor Description OperationNotFoundException()
Construct an exception with no detail message.OperationNotFoundException(java.lang.String message)
Construct an exception with the specified detail message.OperationNotFoundException(java.lang.String message, java.lang.Throwable cause)
Construct an exception with the specified detail message and cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial number for inter-operability with different versions.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
OperationNotFoundException
public OperationNotFoundException()
Construct an exception with no detail message.
-
OperationNotFoundException
public OperationNotFoundException(java.lang.String message)
Construct an exception with the specified detail message.- Parameters:
message
- The details message.
-
OperationNotFoundException
public OperationNotFoundException(java.lang.String message, java.lang.Throwable cause)
Construct an exception with the specified detail message and cause.- Parameters:
message
- The details message.cause
- The cause for this exception.
-
-