Package org.geotools.coverage.processing
Class CannotScaleException
Object
Throwable
Exception
RuntimeException
CoverageProcessingException
CannotScaleException
- All Implemented Interfaces:
Serializable
Throws when a "scale" operation has been requested but the specified grid coverage can't be scaled.
- Since:
- 2.3
- Author:
- Simone Giannecchini
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception without detail message.CannotScaleException
(String message) Constructs a new exception with the specified detail message.CannotScaleException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.CannotScaleException
(Throwable 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
-
CannotScaleException
public CannotScaleException()Creates a new exception without detail message. -
CannotScaleException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.
-
CannotScaleException
Constructs a new exception with the specified cause.- Parameters:
cause
- The cause of this exception.
-
CannotScaleException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- The cause of this exception.
-