com.bea.alsb.financial.api
Class ValidationException

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.ValidationException
All Implemented Interfaces:
Serializable

public class ValidationException
extends FinancialException

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

See Also:
Serialized Form

Constructor Summary
ValidationException()
          Empty constructor.
ValidationException(String message)
          Message-based constructor.
ValidationException(String message, Throwable cause)
          Full constructor.
ValidationException(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

ValidationException

public ValidationException()
Empty constructor.


ValidationException

public ValidationException(String message)
Message-based constructor.

Parameters:
message - the error message.

ValidationException

public ValidationException(Throwable cause)
Cause-based constructor.

Parameters:
cause - the original exception causing the trouble.

ValidationException

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

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