Package org.geotools.coverage.processing
Class CannotCropException
- Object
-
- Throwable
-
- Exception
-
- RuntimeException
-
- CoverageProcessingException
-
- CannotCropException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EmptyIntersectionException
public class CannotCropException extends CoverageProcessingException
Throws when a "crop" operation has been requested but the specified grid coverage can't be scaled.- Since:
- 2.3
- Author:
- Simone Giannecchini
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CannotCropException()
Creates a new exception without detail message.CannotCropException(String message)
Constructs a new exception with the specified detail message.CannotCropException(String message, Throwable cause)
Constructs a new 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 Detail
-
CannotCropException
public CannotCropException()
Creates a new exception without detail message.
-
CannotCropException
public CannotCropException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.
-
-