Class IteratorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
fr.inria.rules.integraal.util.stream.IteratorException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ParseException
Signals an exception raised while iterating over a stream-like structure.
- 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 a 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- message of the exception
-
IteratorException
Creates an iterator exception from another throwable.- Parameters:
e- original exception
-