com.cgiams.esl.fp
Class FlowPreProcessException

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

public class FlowPreProcessException
extends FlowProcessorException

Custom exception for any FlowProcessor's pre-processing classes.

Author:
sbowers
See Also:
Serialized Form

Constructor Summary
FlowPreProcessException(java.lang.String as_message)
          Constructor when providing a default message.
FlowPreProcessException(java.lang.String as_message, java.lang.Throwable ao_exception)
          Constructor for providing an explicit message and a root exception.
FlowPreProcessException(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

FlowPreProcessException

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

Parameters:
as_message - The message for this exception.

FlowPreProcessException

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

Parameters:
ao_exception - The root exception.

FlowPreProcessException

public FlowPreProcessException(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.