Package org.apache.sis.io
Class InvalidSeekException
Object
Throwable
Exception
IOException
InvalidSeekException
- All Implemented Interfaces:
- Serializable
Thrown when an input stream or a channel cannot modify its position to the given value.
 If may be because the given position is after the end of file, but not necessarily.
 This exception may also be thrown by implementations that cache a portion of a file
 and can only seek inside that portion.
- Since:
- 0.8
- See Also:
Defined in the sis-utility module
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a new exception with no message.InvalidSeekException(String message) Constructs a new exception with the specified detail message.InvalidSeekException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.
- 
Method SummaryMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
InvalidSeekExceptionpublic InvalidSeekException()Constructs a new exception with no message.
- 
InvalidSeekExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- the detail message, or- nullif none.
 
- 
InvalidSeekExceptionConstructs a new exception with the specified detail message and cause.- Parameters:
- message- the detail message, or- nullif none.
- cause- the cause, or- nullif none.
 
 
-