com.bea.alsb.financial.api
Class ParseException

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

public class ParseException
extends FinancialException

Exception thrown by the ParseAPI operations.

See Also:
Serialized Form

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

ParseException

public ParseException()
Empty constructor.


ParseException

public ParseException(String message)
Message-based constructor.

Parameters:
message - the error message.

ParseException

public ParseException(Throwable cause)
Cause-based constructor.

Parameters:
cause - the original exception causing the trouble.

ParseException

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

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