|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.springframework.core.NestedRuntimeException org.springframework.jms.JmsException
public abstract class JmsException
Base class for exception thrown by the framework whenever it encounters a problem related to JMS.
Constructor Summary | |
---|---|
JmsException(String msg)
Constructor that takes a message. |
|
JmsException(String msg,
Throwable cause)
Constructor that takes a message and a root cause. |
|
JmsException(Throwable cause)
Constructor that takes a plain root cause, intended for subclasses mirroring corresponding javax.jms exceptions. |
Method Summary | |
---|---|
String |
getErrorCode()
Convenience method to get the vendor specific error code if the root cause was an instance of JMSException. |
String |
getMessage()
Return the detail message, including the message from the linked exception if there is one. |
Methods inherited from class org.springframework.core.NestedRuntimeException |
---|
contains, getCause, getMostSpecificCause, getRootCause, printStackTrace, printStackTrace |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public JmsException(String msg)
msg
- the detail messagepublic JmsException(String msg, Throwable cause)
msg
- the detail messagecause
- the cause of the exception. This argument is generally
expected to be a proper subclass of JMSException
,
but can also be a JNDI NamingException or the like.public JmsException(Throwable cause)
javax.jms
exceptions.
cause
- the cause of the exception. This argument is generally
expected to be a proper subclass of JMSException
.Method Detail |
---|
public String getErrorCode()
null
public String getMessage()
getMessage
in class NestedRuntimeException
JMSException.getLinkedException()
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |