Class InvalidImageException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.xinapse.image.InvalidImageException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ANZException, UNCException

public class InvalidImageException extends Exception
Signals that an error has occurred when performing an operation on an image.
See Also:
  • Constructor Details

    • InvalidImageException

      public InvalidImageException()
      Constructs an InvalidImageException with "invalid image" as its detail message.
    • InvalidImageException

      public InvalidImageException(String s)
      Constructs an InvalidImageException with the specified detail message. The error message string s can later be retrieved by the Throwable.getMessage() method of class Throwable.
      Parameters:
      s - the detail message.
    • InvalidImageException

      public InvalidImageException(String message, Throwable cause)
      Constructs an InvalidImageException with the specified cause.
      Parameters:
      message - the detail message.
      cause - the cause.