Class IllegalGridGeometryException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Disjoint­Extent­Exception

public class IllegalGridGeometryException extends IllegalArgumentException
Thrown when the argument specified to a method or constructor would result in an invalid Grid­Geometry. This exception may have a Transform­Exception as its cause, in which case the grid geometry failed to use a given "grid to CRS" transform over the given grid extent. Such failure may happen with non-linear transforms, but are less likely in the common case where the grid geometry uses a linear (or affine) "grid to CRS" transform.
Since:
1.0
See Also:
  • Constructor Details

    • IllegalGridGeometryException

      public IllegalGridGeometryException()
      Constructs an exception with no detail message.
    • IllegalGridGeometryException

      public IllegalGridGeometryException(String message)
      Constructs an exception with the specified detail message.
      Parameters:
      message - the detail message.
    • IllegalGridGeometryException

      public IllegalGridGeometryException(Throwable cause)
      Constructs an exception with the specified cause.
      Parameters:
      cause - the cause for this exception.
      Since:
      1.1
    • IllegalGridGeometryException

      public IllegalGridGeometryException(String message, Throwable cause)
      Constructs an exception with the specified detail message and cause.
      Parameters:
      message - the detail message.
      cause - the cause for this exception.