FileDocCategorySizeDatePackage
InvalidClientIDException.javaAPI DocGlassfish v2 API2945Fri May 04 22:36:16 BST 2007javax.jms

InvalidClientIDException

public class InvalidClientIDException extends JMSException

This exception must be thrown when a client attempts to set a connection's client ID to a value that is rejected by a provider.

version
26 August 1998
author
Rahul Sharma

Fields Summary
Constructors Summary
public InvalidClientIDException(String reason, String errorCode)
Constructs an InvalidClientIDException 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 InvalidClientIDException(String reason)
Constructs an InvalidClientIDException with the specified reason. The error code defaults to null.

param
reason a description of the exception

    super(reason);
  
Methods Summary