Class OperationNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opengis.util.FactoryException
org.opengis.referencing.operation.OperationNotFoundException
- All Implemented Interfaces:
Serializable
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:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
Serial number for inter-operability with different versions. -
Constructor Summary
ConstructorsConstructorDescriptionConstruct an exception with no detail message.OperationNotFoundException
(String message) Construct an exception with the specified detail message.OperationNotFoundException
(String message, Throwable cause) Construct an exception with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for inter-operability with different versions.- See Also:
-
-
Constructor Details
-
OperationNotFoundException
public OperationNotFoundException()Construct an exception with no detail message. -
OperationNotFoundException
Construct an exception with the specified detail message.- Parameters:
message
- The details message.
-
OperationNotFoundException
Construct an exception with the specified detail message and cause.- Parameters:
message
- The details message.cause
- The cause for this exception.
-