Class CannotReprojectException

  • All Implemented Interfaces:
    Serializable

    public class CannotReprojectException
    extends CoverageProcessingException
    Throws when a "resample" operation has been requested but the specified grid coverage can't be reprojected.
    Since:
    2.1
    Author:
    Martin Desruisseaux
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      CannotReprojectException()
      Creates a new exception without detail message.
      CannotReprojectException​(String message)
      Constructs a new exception with the specified detail message.
      CannotReprojectException​(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
      • Methods inherited from class Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CannotReprojectException

        public CannotReprojectException()
        Creates a new exception without detail message.
      • CannotReprojectException

        public CannotReprojectException​(String message)
        Constructs a new exception with the specified detail message.
        Parameters:
        message - the detail message.
      • CannotReprojectException

        public CannotReprojectException​(String message,
                                        Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - the detail message.
        cause - The cause of this exception.