com.bea.alsb.financial.api
Class TransformationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.bea.alsb.financial.api.FinancialException
              extended by com.bea.alsb.financial.api.TransformationException
All Implemented Interfaces:
Serializable

public class TransformationException
extends FinancialException

This exception is supposed to be thrown by the TransformationAPI methods.

See Also:
Serialized Form

Constructor Summary
TransformationException()
          Empty constructor.
TransformationException(String message)
          Message-based constructor.
TransformationException(String message, Throwable cause)
          Full constructor.
TransformationException(Throwable cause)
          Cause-based constructor.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TransformationException

public TransformationException()
Empty constructor.


TransformationException

public TransformationException(String message)
Message-based constructor.

Parameters:
message - the error message.

TransformationException

public TransformationException(Throwable cause)
Cause-based constructor.

Parameters:
cause - the original exception causing the trouble.

TransformationException

public TransformationException(String message,
                               Throwable cause)
Full constructor.

Parameters:
message - the error message.
cause - the original exception causing the trouble.