Class InvalidTextureException

All Implemented Interfaces:
Serializable

public class InvalidTextureException extends LoaderException
Raised if a material loader fails to validate a texture. This is usually because image file cannot be found or is corrupted.
See Also:
  • Constructor Details

    • InvalidTextureException

      public InvalidTextureException()
      Constructor.
    • InvalidTextureException

      public InvalidTextureException(String message)
      Constructor with String containing message.
      Parameters:
      message - Message indicating the cause of the exception.
    • InvalidTextureException

      public InvalidTextureException(String message, Throwable cause)
      Constructor with message and cause.
      Parameters:
      message - Message describing the cause of the exception.
      cause - Instance containing the cause of the exception.
    • InvalidTextureException

      public InvalidTextureException(Throwable cause)
      Constructor with cause.
      Parameters:
      cause - Instance containing the cause of the exception.