Example usage for org.apache.commons.pipeline ProcessingException getData

List of usage examples for org.apache.commons.pipeline ProcessingException getData

Introduction

In this page you can find the example usage for org.apache.commons.pipeline ProcessingException getData.

Prototype

public Object getData() 

Source Link

Document

Returns the data

Usage

From source file:edu.scripps.fl.pipeline.PipelineUtils.java

public void logErrors(Pipeline pipeline) {
    for (StageDriver driver : pipeline.getStageDrivers()) {
        for (ProcessingException pe : driver.getProcessingExceptions()) {
            log.error(String.format("%s\t%s", pe.getData(), pe.getCause()));
        }//from  ww  w.j a v a2s  .c o  m
    }
}