Package jakarta.jms

Class InvalidSelectorException

All Implemented Interfaces:
Serializable

public class InvalidSelectorException extends JMSException

This exception must be thrown when a Jakarta Messaging client attempts to give a provider a message selector with invalid syntax.

Since:
JMS 1.0
Version:
Jakarta Messaging 2.0
See Also:
  • Constructor Details

    • InvalidSelectorException

      public InvalidSelectorException(String reason, String errorCode, Exception linkedException)
      Constructs an InvalidSelectorException with the specified reason, error code and linked exception.
      Parameters:
      reason - a description of the exception
      errorCode - a string specifying the vendor-specific error code
      linkedException - a linked exception
    • InvalidSelectorException

      public InvalidSelectorException(String reason, String errorCode)
      Constructs an InvalidSelectorException with the specified reason and error code.
      Parameters:
      reason - a description of the exception
      errorCode - a string specifying the vendor-specific error code
    • InvalidSelectorException

      public InvalidSelectorException(String reason)
      Constructs an InvalidSelectorException with the specified reason. The error code defaults to null.
      Parameters:
      reason - a description of the exception