Package com.luciad.earth.tileset
Class TLcdEarthTileSetIterationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.luciad.earth.tileset.TLcdEarthTileSetIterationException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorDescriptionConstructs a new tile iteration exception withnull
as its detail message, an uninitialized cause and the specified tile.TLcdEarthTileSetIterationException
(String aMessage, ALcdEarthTile aTile) Constructs a new tile iteration exception with a detail message, an uninitialized cause and the specified tile.TLcdEarthTileSetIterationException
(String aMessage, Throwable aCause, ALcdEarthTile aTile) Constructs a new tile iteration exception with a detail message, a cause and the specified tile.TLcdEarthTileSetIterationException
(Throwable aCause, ALcdEarthTile aTile) Constructs a new tile iteration exception withnull
as its detail message, a cause and the specified tile. -
Method Summary
Modifier and TypeMethodDescriptiongetTile()
Returns the tile that was being processed at the time of the error ornull
if not applicable or unknown.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TLcdEarthTileSetIterationException
Constructs a new tile iteration exception withnull
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 ornull
-
TLcdEarthTileSetIterationException
Constructs a new tile iteration exception with a detail message, an uninitialized cause and the specified tile.- Parameters:
aMessage
- the detail messageaTile
- the tile that was being processed at the time of the error ornull
-
TLcdEarthTileSetIterationException
Constructs a new tile iteration exception with a detail message, a cause and the specified tile.- Parameters:
aMessage
- the detail messageaCause
- the cause of this exceptionaTile
- the tile that was being processed at the time of the error ornull
-
TLcdEarthTileSetIterationException
Constructs a new tile iteration exception withnull
as its detail message, a cause and the specified tile.- Parameters:
aCause
- the cause of this exceptionaTile
- the tile that was being processed at the time of the error ornull
-
-
Method Details
-
getTile
Returns the tile that was being processed at the time of the error ornull
if not applicable or unknown. If the returned tile is notnull
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.
-