com.cgiams.esl.fp
Class FlowProcessorException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.cgiams.esl.common.exceptions.ESLException
              extended bycom.cgiams.esl.fp.FlowProcessorException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
FlowPreProcessException

public class FlowProcessorException
extends ESLException

Highest-level exception for the Flow Processor and is expected to contain the root cause of any problem.

Author:
sbowers
See Also:
Serialized Form

Constructor Summary
FlowProcessorException(java.lang.String as_message)
          Constructor when providing a default message.
FlowProcessorException(java.lang.String as_message, java.lang.Throwable ao_exception)
          Constructor for providing an explicit message and a root exception.
FlowProcessorException(java.lang.Throwable ao_exception)
          Constructor when providing a root exception.
 
Methods inherited from class com.cgiams.esl.common.exceptions.ESLException
getFormattedErrorMessage, getMessage, getRootException, getRootMessage
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FlowProcessorException

public FlowProcessorException(java.lang.String as_message)
Constructor when providing a default message.

Parameters:
as_message - The message for this exception.

FlowProcessorException

public FlowProcessorException(java.lang.Throwable ao_exception)
Constructor when providing a root exception.

Parameters:
ao_exception - The root exception.

FlowProcessorException

public FlowProcessorException(java.lang.String as_message,
                              java.lang.Throwable ao_exception)
Constructor for providing an explicit message and a root exception.

Parameters:
as_message - A default message for this exception.
ao_exception - The root exception.