Module org.opengis.geoapi
Class OperationNotFoundException
Object
Throwable
Exception
FactoryException
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
- See Also:
- Departure from OGC/ISO abstract specification:
Addition of element not in the ISO/OGC specification
This exception is not part of the OGC specification.
-
Constructor Summary
ConstructorDescriptionConstruct 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 Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
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.
-