Package jakarta.jms

Class InvalidClientIDException

All Implemented Interfaces:
Serializable

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.

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

    • InvalidClientIDException

      public InvalidClientIDException(String reason, String errorCode, Exception linkedException)
      Constructs an InvalidClientIDException 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
    • InvalidClientIDException

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

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