Class IteratorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
fr.lirmm.graphik.util.stream.IteratorException
- All Implemented Interfaces:
Serializable
Exception thrown when iterating over a closeable iterator fails.
- Author:
- Clément Sipieter (INRIA) <clement@6pi.fr>
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIteratorException(String message) Creates an iterator exception with a message.IteratorException(String message, Throwable cause) Creates an iterator exception with a message and cause.Creates an iterator exception from another throwable. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IteratorException
-
IteratorException
Creates an iterator exception with a message.- Parameters:
message- the exception message
-
IteratorException
Creates an iterator exception from another throwable.- Parameters:
e- the underlying cause
-