atg.adc.pipeline
Class ADCPipelineException

java.lang.Object
  extended by ADCException
      extended by atg.adc.pipeline.ADCPipelineException

public class ADCPipelineException
extends ADCException

The pipeline result of one of the ADC pipelines contains errors. This exception will contain the result.


Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 
Constructor Summary
ADCPipelineException()
          Create a new empty exception
ADCPipelineException(PipelineResult pResult)
          Create a new exception with the given pipeline result
ADCPipelineException(java.lang.String pStr)
          Create a new exception with the given error message
ADCPipelineException(java.lang.String pStr, java.lang.Throwable pSourceException)
          Create a new exception with the given error message and source exception
ADCPipelineException(java.lang.Throwable pSourceException)
          Create a new exception using the given source exception
 
Method Summary
 PipelineResult getPipelineResult()
           
 void setPipelineResult(PipelineResult pPipelineResult)
          The PipelineResult that contained errors
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static final java.lang.String CLASS_VERSION
Class version string

See Also:
Constant Field Values
Constructor Detail

ADCPipelineException

public ADCPipelineException()
Create a new empty exception


ADCPipelineException

public ADCPipelineException(PipelineResult pResult)
Create a new exception with the given pipeline result

Parameters:
pResult - The PipelineResult containing errors

ADCPipelineException

public ADCPipelineException(java.lang.String pStr)
Create a new exception with the given error message

Parameters:
pStr - the error message string

ADCPipelineException

public ADCPipelineException(java.lang.Throwable pSourceException)
Create a new exception using the given source exception

Parameters:
pSourceException - the source exception

ADCPipelineException

public ADCPipelineException(java.lang.String pStr,
                            java.lang.Throwable pSourceException)
Create a new exception with the given error message and source exception

Parameters:
pStr - the error message string
pSourceException - the source exception
Method Detail

setPipelineResult

public void setPipelineResult(PipelineResult pPipelineResult)
The PipelineResult that contained errors

Parameters:
pPipelineResult - the PipelineResult that contained errors

getPipelineResult

public PipelineResult getPipelineResult()
Returns:
The PipelineResult that contained errors