Class LoaderException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
InvalidTextureException

public class LoaderException extends GeometryIOException
Raised if a Loader fails to load a file. This is usually because the file is corrupted or cannot be interpreted.
See Also:
  • Constructor Details

    • LoaderException

      public LoaderException()
      Constructor.
    • LoaderException

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

      public LoaderException(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.
    • LoaderException

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