com.ibm.websphere.sib.exception

Class SIIncorrectCallException

  1. java.lang.Object
  2. extended byjava.lang.Throwable
  3. extended byjava.lang.Exception
  4. extended bycom.ibm.websphere.sib.exception.SIException
  5. extended bycom.ibm.websphere.sib.exception.SIIncorrectCallException
All implemented interfaces:
java.io.Serializable

  1. public class SIIncorrectCallException
  2. extends SIException
This checked exception is thrown whenever a method call is not incorrect. For example, if an argument is not allowed to be null and null is passed, or if the value of the argument is incorrect, then this exception is thrown. It also thrown if the object on which the method is invoked is inappropriate (for example, if an attempt is made to commit a completed transaction). In any case where the validation rules are non-trivial, or considered likely to change, a specific subclass is thrown, otherwise SIIncorrectCallException is used directly. An SIIncorrectCallException (or its subclasses) should not contain a linked exception.
See Also:
Serialized Form

Constructor Summary

Constructor and Description
SIIncorrectCallException()
SIIncorrectCallException(java.lang.String message)
Constructor for when the Exception
SIIncorrectCallException(java.lang.Throwable cause)
Constructor for when the Exception is to be thrown because another Exception has been caught during the copy.

Method Summary

Methods inherited from class com.ibm.websphere.sib.exception.SIException
getExceptionInserts, getExceptionReason
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

SIIncorrectCallException

  1. public SIIncorrectCallException( )

SIIncorrectCallException

  1. public SIIncorrectCallException( java.lang.Throwable cause)
Constructor for when the Exception is to be thrown because another Exception has been caught during the copy.
Parameters:
cause - The original Throwable which has caused this to be thrown.

SIIncorrectCallException

  1. public SIIncorrectCallException( java.lang.String message)
Constructor for when the Exception
Parameters:
message - A String giving information about the problem which caused this to be thrown.