Uses of Class
org.springframework.jms.JmsException

Packages that use JmsException
org.springframework.jms Classes in this package make JMS easier to use. 
org.springframework.jms.core Core package of the JMS support.  
org.springframework.jms.support This package provides generic JMS support classes, to be used by higher-level classes like JmsTemplate. 
org.springframework.jms.support.converter Provides a MessageConverter abstraction to convert between Java objects and JMS messages. 
org.springframework.jms.support.destination Support classes for Spring's JMS framework. 
 

Uses of JmsException in org.springframework.jms
 

Subclasses of JmsException in org.springframework.jms
 class IllegalStateException
          Runtime exception mirroring the JMS IllegalStateException.
 class InvalidClientIDException
          Runtime exception mirroring the JMS InvalidClientIDException.
 class InvalidDestinationException
          Runtime exception mirroring the JMS InvalidDestinationException.
 class InvalidSelectorException
          Runtime exception mirroring the JMS InvalidSelectorException.
 class JmsSecurityException
          Runtime exception mirroring the JMS JMSSecurityException.
 class MessageEOFException
          Runtime exception mirroring the JMS MessageEOFException.
 class MessageFormatException
          Runtime exception mirroring the JMS MessageFormatException.
 class MessageNotReadableException
          Runtime exception mirroring the JMS MessageNotReadableException.
 class MessageNotWriteableException
          Runtime exception mirroring the JMS MessageNotWriteableException.
 class ResourceAllocationException
          Runtime exception mirroring the JMS ResourceAllocationException.
 class TransactionInProgressException
          Runtime exception mirroring the JMS TransactionInProgressException.
 class TransactionRolledBackException
          Runtime exception mirroring the JMS TransactionRolledBackException.
 class UncategorizedJmsException
          JmsException to be thrown when no other matching subclass found.
 

Uses of JmsException in org.springframework.jms.core
 

Methods in org.springframework.jms.core that return JmsException
protected  JmsException JmsTemplate.convertJmsAccessException(JMSException ex)
          Convert the specified checked JMSException to a Spring runtime JmsException equivalent.
 

Methods in org.springframework.jms.core that throw JmsException
 Object JmsTemplate.execute(SessionCallback action, boolean startConnection)
          Execute the action specified by the given action object within a JMS Session.
 Object JmsTemplate.execute(SessionCallback action)
           
 Object JmsTemplate.execute(ProducerCallback action)
           
 void JmsTemplate.send(MessageCreator messageCreator)
           
 void JmsTemplate.send(Destination destination, MessageCreator messageCreator)
           
 void JmsTemplate.send(String destinationName, MessageCreator messageCreator)
           
 void JmsTemplate.convertAndSend(Object message)
           
 void JmsTemplate.convertAndSend(Destination destination, Object message)
           
 void JmsTemplate.convertAndSend(String destinationName, Object message)
           
 void JmsTemplate.convertAndSend(Object message, MessagePostProcessor postProcessor)
           
 void JmsTemplate.convertAndSend(Destination destination, Object message, MessagePostProcessor postProcessor)
           
 void JmsTemplate.convertAndSend(String destinationName, Object message, MessagePostProcessor postProcessor)
           
 Message JmsTemplate.receive()
           
 Message JmsTemplate.receive(Destination destination)
           
 Message JmsTemplate.receive(String destinationName)
           
 Message JmsTemplate.receiveSelected(String messageSelector)
           
 Message JmsTemplate.receiveSelected(Destination destination, String messageSelector)
           
 Message JmsTemplate.receiveSelected(String destinationName, String messageSelector)
           
 Object JmsTemplate.receiveAndConvert()
           
 Object JmsTemplate.receiveAndConvert(Destination destination)
           
 Object JmsTemplate.receiveAndConvert(String destinationName)
           
 Object JmsTemplate.receiveSelectedAndConvert(String messageSelector)
           
 Object JmsTemplate.receiveSelectedAndConvert(Destination destination, String messageSelector)
           
 Object JmsTemplate.receiveSelectedAndConvert(String destinationName, String messageSelector)
           
 Object JmsOperations.execute(SessionCallback action)
          Execute the action specified by the given action object within a JMS Session.
 Object JmsOperations.execute(ProducerCallback action)
          Send a message to a JMS destination.
 void JmsOperations.send(MessageCreator messageCreator)
          Send a message to the default destination.
 void JmsOperations.send(Destination destination, MessageCreator messageCreator)
          Send a message to the specified destination.
 void JmsOperations.send(String destinationName, MessageCreator messageCreator)
          Send a message to the specified destination.
 void JmsOperations.convertAndSend(Object message)
          Send the given object to the default destination, converting the object to a JMS message with a configured MessageConverter.
 void JmsOperations.convertAndSend(Destination destination, Object message)
          Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.
 void JmsOperations.convertAndSend(String destinationName, Object message)
          Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.
 void JmsOperations.convertAndSend(Object message, MessagePostProcessor postProcessor)
          Send the given object to the default destination, converting the object to a JMS message with a configured MessageConverter.
 void JmsOperations.convertAndSend(Destination destination, Object message, MessagePostProcessor postProcessor)
          Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.
 void JmsOperations.convertAndSend(String destinationName, Object message, MessagePostProcessor postProcessor)
          Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.
 Message JmsOperations.receive()
          Receive a message synchronously from the default destination, but only wait up to a specified time for delivery.
 Message JmsOperations.receive(Destination destination)
          Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.
 Message JmsOperations.receive(String destinationName)
          Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.
 Message JmsOperations.receiveSelected(String messageSelector)
          Receive a message synchronously from the default destination, but only wait up to a specified time for delivery.
 Message JmsOperations.receiveSelected(Destination destination, String messageSelector)
          Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.
 Message JmsOperations.receiveSelected(String destinationName, String messageSelector)
          Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.
 Object JmsOperations.receiveAndConvert()
          Receive a message synchronously from the default destination, but only wait up to a specified time for delivery.
 Object JmsOperations.receiveAndConvert(Destination destination)
          Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.
 Object JmsOperations.receiveAndConvert(String destinationName)
          Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.
 Object JmsOperations.receiveSelectedAndConvert(String messageSelector)
          Receive a message synchronously from the default destination, but only wait up to a specified time for delivery.
 Object JmsOperations.receiveSelectedAndConvert(Destination destination, String messageSelector)
          Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.
 Object JmsOperations.receiveSelectedAndConvert(String destinationName, String messageSelector)
          Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.
 

Uses of JmsException in org.springframework.jms.support
 

Methods in org.springframework.jms.support that return JmsException
static JmsException JmsUtils.convertJmsAccessException(JMSException ex)
          Convert the specified checked JMSException to a Spring runtime JmsException equivalent.
 

Uses of JmsException in org.springframework.jms.support.converter
 

Subclasses of JmsException in org.springframework.jms.support.converter
 class MessageConversionException
          Thrown by MessageConverter when it can not convert an object to/from a JMS message.
 

Uses of JmsException in org.springframework.jms.support.destination
 

Subclasses of JmsException in org.springframework.jms.support.destination
 class DestinationResolutionException
          Thrown by DestinationResolver when it cannot resolve a destination name.
 



Copyright (C) 2003-2004 The Spring Framework Project.