- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.pervasive.datarush.exceptions.DRException
-
- com.pervasive.datarush.ports.physical.BrokenFlowError
-
- All Implemented Interfaces:
Serializable
public class BrokenFlowError extends DRException
An error indicating premature termination of a data flow. ABrokenFlowError
is raised when an output port is closed without an EOD having been sent. This is an irrecoverable event.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BrokenFlowError(String writer)
Construct a new exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getWriter()
Identifies the source process which caused the failure.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
BrokenFlowError
public BrokenFlowError(String writer)
Construct a new exception.- Parameters:
writer
- the composition path of the process raising the error.
-
-
Method Detail
-
getWriter
public String getWriter()
Identifies the source process which caused the failure.- Returns:
- the composition path of the flow's writer
-
-