java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.pervasive.datarush.exceptions.DRException
com.pervasive.datarush.ports.physical.EndOfDataException
- All Implemented Interfaces:
Serializable
Exception thrown when an error relating to reaching the end of a flow is
encountered. This may occur when:
- You attempt to step an input port which has already reached the EOD
- You attempt to push a token onto an output port to which you have already pushed EOD
- The application terminates but you haven't read the EOD from all input ports
- The application terminates but you haven't pushed EOD onto all output ports
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEndOfDataException(String message) Constructs anEndOfDataExceptionwith the specified message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EndOfDataException
Constructs anEndOfDataExceptionwith the specified message.- Parameters:
message-Stringcontaining the desired message
-