Class UncategorizedJmsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.jms.JmsException
org.springframework.jms.UncategorizedJmsException
- All Implemented Interfaces:
- Serializable
JmsException to be thrown when no other matching subclass found.
- Since:
- 1.1
- Author:
- Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructor that takes a message.UncategorizedJmsException(String msg, Throwable cause) Constructor that takes a message and a root cause.Constructor that takes a root cause only.
- 
Method SummaryMethods inherited from class org.springframework.jms.JmsExceptiongetErrorCode, getMessageMethods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
UncategorizedJmsExceptionConstructor that takes a message.- Parameters:
- msg- the detail message
 
- 
UncategorizedJmsExceptionConstructor that takes a message and a root cause.- Parameters:
- msg- the detail message
- cause- 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.
 
- 
UncategorizedJmsExceptionConstructor that takes a root cause only.- Parameters:
- cause- 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.
 
 
-