com.ibm.websphere.sib.exception
Class SIErrorException
- java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.ibm.websphere.sib.exception.SIErrorException
All implemented interfaces:
java.io.Serializable
Direct known subclasses:
- public class SIErrorException
- extends java.lang.RuntimeException
The context and root cause of the problem are detailed in the chain of linked Exceptions contained by the SIErrorException.
See Also:
Constructor Summary
Constructor and Description |
---|
SIErrorException()
Construct a new SIException when no additional details can be provided
|
SIErrorException(java.lang.String message)
Constructor for when the Exception is to be thrown for a reason other than
that an Exception has been caught during the copy.
|
SIErrorException(java.lang.String message,java.lang.Throwable cause)
Constructor for when the Exception is to be thrown because another
Exception has been caught during the copy and additional information is
to be included.
|
SIErrorException(java.lang.Throwable cause)
Constructor for when the Exception is to be thrown because another
Exception has been caught during the copy.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getExceptionInserts()
Returns an array of "exception inserts", which are used in conjunction with
the exception reason to identify the reason that a message could not be
delivered.
|
|
getExceptionReason()
Returns an integer that indicates the reason a message could not be
delivered.
|
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
SIErrorException
- public SIErrorException()
Construct a new SIException when no additional details can be provided
SIErrorException
- public SIErrorException(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. SIErrorException
- public SIErrorException(java.lang.String message)
Constructor for when the Exception is to be thrown for a reason other than
that an Exception has been caught during the copy.
Parameters:
message
- A String giving information about the problem which caused this to be thrown. SIErrorException
- public SIErrorException(java.lang.String message,
- java.lang.Throwable cause)
Constructor for when the Exception is to be thrown because another
Exception has been caught during the copy and additional information is
to be included.
Parameters:
message
- A String giving information about the problem which caused this to be thrown. cause
- The original Throwable which has caused this to be thrown. Method Detail
getExceptionReason
- public int getExceptionReason()
Returns an integer that indicates the reason a message could not be
delivered. Some subclasses of SIException can indicate a failure to deliver
a message (i.e. those thrown by SICoreConnection.createProducerSession and
send). These subclasses will include a specific exception reason, chosen
from those documented in com.ibm.websphere.sib.SIRCConstants, to indicate
the reason that the message could not be delivered. All other
exceptions will just return SIRC0001_DELIVERY_ERROR.
Returns:
the exception reason
getExceptionInserts
- public java.lang.String[] getExceptionInserts( )
Returns an array of "exception inserts", which are used in conjunction with
the exception reason to identify the reason that a message could not be
delivered. For example, if getExceptionReason returns a value of
SIRC0003_DESTINATION_NOT_FOUND, the array will contain, as its only element,
the name of the destination that could not be found. See
getExceptionInserts() for further information.