Class PulsarClientException.InvalidConfigurationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.pulsar.client.api.PulsarClientException
org.apache.pulsar.client.api.PulsarClientException.InvalidConfigurationException
All Implemented Interfaces:
Serializable
Enclosing class:
PulsarClientException

public static class PulsarClientException.InvalidConfigurationException extends PulsarClientException
Invalid Configuration exception thrown by Pulsar client.
See Also:
  • Constructor Details

    • InvalidConfigurationException

      public InvalidConfigurationException(String msg)
      Constructs an InvalidConfigurationException with the specified detail message.
      Parameters:
      msg - The detail message (which is saved for later retrieval by the Throwable.getMessage() method)
    • InvalidConfigurationException

      public InvalidConfigurationException(Throwable t)
      Constructs an InvalidConfigurationException with the specified cause.
      Parameters:
      t - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • InvalidConfigurationException

      public InvalidConfigurationException(String msg, Throwable t)
      Constructs an InvalidConfigurationException with the specified cause.
      Parameters:
      msg - The detail message (which is saved for later retrieval by the Throwable.getMessage() method)
      t - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)