Package org.geotools.coverage.processing
Class CoverageProcessingException
Object
Throwable
Exception
RuntimeException
CoverageProcessingException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CannotCropException
,CannotReprojectException
,CannotScaleException
Throws when a coverage operation failed.
- Since:
- 2.3
- Author:
- Martin Desruisseaux
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception without detail message.CoverageProcessingException
(String message) Constructs a new exception with the specified detail message.CoverageProcessingException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CoverageProcessingException
public CoverageProcessingException()Creates a new exception without detail message. -
CoverageProcessingException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.
-
CoverageProcessingException
Constructs a new exception with the specified cause.- Parameters:
cause
- The cause of this exception.
-
CoverageProcessingException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- The cause of this exception.
-