public class

UncategorizedJmsException

extends JmsException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.springframework.core.NestedRuntimeException
           ↳ org.springframework.jms.JmsException
             ↳ org.springframework.jms.UncategorizedJmsException

Class Overview

JmsException to be thrown when no other matching subclass found.

Summary

Public Constructors
UncategorizedJmsException(String msg)
Constructor that takes a message.
UncategorizedJmsException(String msg, Throwable cause)
Constructor that takes a message and a root cause.
UncategorizedJmsException(Throwable cause)
Constructor that takes a root cause only.
[Expand]
Inherited Methods
From class org.springframework.jms.JmsException
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public UncategorizedJmsException (String msg)

Constructor that takes a message.

Parameters
msg the detail message

public UncategorizedJmsException (String msg, Throwable cause)

Constructor 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 javax.jms.JMSException, but can also be a JNDI NamingException or the like.

public UncategorizedJmsException (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.