Class UncategorizedJmsException

All Implemented Interfaces:
Serializable

public class UncategorizedJmsException extends JmsException
JmsException to be thrown when no other matching subclass found.
Since:
1.1
Author:
Juergen Hoeller
See Also:
  • Constructor Details

    • UncategorizedJmsException

      public UncategorizedJmsException(String msg)
      Constructor that takes a message.
      Parameters:
      msg - the detail message
    • UncategorizedJmsException

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

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