FileDocCategorySizeDatePackage
InvalidSelectorException.javaAPI DocGlassfish v2 API2934Fri May 04 22:36:16 BST 2007javax.jms

InvalidSelectorException

public class InvalidSelectorException extends JMSException

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

version
26 August 1998
author
Rahul Sharma

Fields Summary
Constructors Summary
public InvalidSelectorException(String reason, String errorCode)
Constructs an InvalidSelectorException with the specified reason and error code.

param
reason a description of the exception
param
errorCode a string specifying the vendor-specific error code

    super(reason, errorCode);
  
public InvalidSelectorException(String reason)
Constructs an InvalidSelectorException with the specified reason. The error code defaults to null.

param
reason a description of the exception

    super(reason);
  
Methods Summary