Class TLcdEarthTileSetIterationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.luciad.earth.tileset.TLcdEarthTileSetIterationException
All Implemented Interfaces:
Serializable

public class TLcdEarthTileSetIterationException extends RuntimeException
An exception that can be thrown because of an unexpected error (for example an IO error) during iteration of an ILcdEarthIterableTileSet.
Since:
9.1
See Also:
  • Constructor Details

    • TLcdEarthTileSetIterationException

      public TLcdEarthTileSetIterationException(ALcdEarthTile aTile)
      Constructs a new tile iteration exception with null as its detail message, an uninitialized cause and the specified tile.
      Parameters:
      aTile - the tile that was being processed at the time of the error or null
    • TLcdEarthTileSetIterationException

      public TLcdEarthTileSetIterationException(String aMessage, ALcdEarthTile aTile)
      Constructs a new tile iteration exception with a detail message, an uninitialized cause and the specified tile.
      Parameters:
      aMessage - the detail message
      aTile - the tile that was being processed at the time of the error or null
    • TLcdEarthTileSetIterationException

      public TLcdEarthTileSetIterationException(String aMessage, Throwable aCause, ALcdEarthTile aTile)
      Constructs a new tile iteration exception with a detail message, a cause and the specified tile.
      Parameters:
      aMessage - the detail message
      aCause - the cause of this exception
      aTile - the tile that was being processed at the time of the error or null
    • TLcdEarthTileSetIterationException

      public TLcdEarthTileSetIterationException(Throwable aCause, ALcdEarthTile aTile)
      Constructs a new tile iteration exception with null as its detail message, a cause and the specified tile.
      Parameters:
      aCause - the cause of this exception
      aTile - the tile that was being processed at the time of the error or null
  • Method Details

    • getTile

      public ALcdEarthTile getTile()
      Returns the tile that was being processed at the time of the error or null if not applicable or unknown.

      If the returned tile is not null any if its attributes may be invalid.

      Returns:
      the tile that was being processed at the time of the error or null if no applicable or unknown.