- 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
public class EndOfDataException extends DRException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EndOfDataException(String message)
Constructs anEndOfDataException
with 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 Detail
-
EndOfDataException
public EndOfDataException(String message)
Constructs anEndOfDataException
with the specified message.- Parameters:
message
-String
containing the desired message
-
-