Error Output Data
Data Object used to communicate information about an error that occurs within a component.
Class name: com.datashyft.pipeline.dataobjects.ErrorOutput
ErrorOutput(String errorMessage) — Creates a new Error Output object with the specified error message. The input channel and input data attributes are set to null.
ErrorOutput(String errorMessage, String inputChannel, PipelineData inputData) — Creates a new Error Output object with the specified error message, input channel and input data object.
ErrorOutput(Map<String, List<String> tags, String type, String errorMessage, String inputChannel, PipelineData inputData) — Creates a new Error Output object with the specified error message, input channel and input data object. The new object is assigned the specified tags and type.
getErrorMessage() — Returns the Error Message contained within this data object.
getInputChannel() — Returns the name of the Input Channel on which the offending data object was received.
getInputData() — Returns the data object that caused this error.