org.springframework.jms
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:
- java.io.Serializable
public class UncategorizedJmsException
- extends JmsException
JmsException to be thrown when no other matching subclass found.
- Since:
- 1.1
- Author:
- Juergen Hoeller
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
UncategorizedJmsException
public UncategorizedJmsException(java.lang.String msg)
- Constructor that takes a message.
- Parameters:
msg
- the detail message
UncategorizedJmsException
public UncategorizedJmsException(java.lang.String msg,
java.lang.Throwable cause)
- Constructor that takes a message and a root cause.
- Parameters:
msg
- the detail messagecause
- the cause of the exception. This argument is generally
expected to be a proper subclass of javax.jms.JMSException
,
but can also be a JNDI NamingException or the like.
UncategorizedJmsException
public UncategorizedJmsException(java.lang.Throwable cause)
- Constructor that takes a root cause only.
- Parameters:
cause
- the cause of the exception. This argument is generally
expected to be a proper subclass of javax.jms.JMSException
,
but can also be a JNDI NamingException or the like.