|
jBroker® MQ 2.1 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--javax.jms.JMSException
This is the root class of all JMS API exceptions.
It provides the following information:
getMessage method.
| Constructor Summary | |
JMSException(String reason)
Constructs a JMSException with the specified reason and with
the error code defaulting to null. |
|
JMSException(String reason,
String errorCode)
Constructs a JMSException with the specified reason and
error code. |
|
| Method Summary | |
String |
getErrorCode()
Gets the vendor-specific error code. |
Exception |
getLinkedException()
Gets the exception linked to this one. |
void |
setLinkedException(Exception ex)
Adds a linked Exception. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public JMSException(String reason,
String errorCode)
JMSException with the specified reason and
error code.reason - a description of the exceptionerrorCode - a string specifying the vendor-specific
error codepublic JMSException(String reason)
JMSException with the specified reason and with
the error code defaulting to null.reason - a description of the exception| Method Detail |