Package org.apache.pulsar.client.api
Class PulsarClientException.InvalidServiceURL
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.pulsar.client.api.PulsarClientException
-
- org.apache.pulsar.client.api.PulsarClientException.InvalidServiceURL
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- PulsarClientException
public static class PulsarClientException.InvalidServiceURL extends PulsarClientException
Invalid Service URL exception thrown by Pulsar client.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.pulsar.client.api.PulsarClientException
PulsarClientException.AlreadyClosedException, PulsarClientException.AuthenticationException, PulsarClientException.AuthorizationException, PulsarClientException.BrokerMetadataException, PulsarClientException.BrokerPersistenceException, PulsarClientException.ChecksumException, PulsarClientException.ConnectException, PulsarClientException.ConsumerAssignException, PulsarClientException.ConsumerBusyException, PulsarClientException.CryptoException, PulsarClientException.GettingAuthenticationDataException, PulsarClientException.IncompatibleSchemaException, PulsarClientException.InvalidConfigurationException, PulsarClientException.InvalidMessageException, PulsarClientException.InvalidServiceURL, PulsarClientException.InvalidTopicNameException, PulsarClientException.LookupException, PulsarClientException.MemoryBufferIsFullError, PulsarClientException.MessageAcknowledgeException, PulsarClientException.NotAllowedException, PulsarClientException.NotConnectedException, PulsarClientException.NotFoundException, PulsarClientException.NotSupportedException, PulsarClientException.ProducerBlockedQuotaExceededError, PulsarClientException.ProducerBlockedQuotaExceededException, PulsarClientException.ProducerBusyException, PulsarClientException.ProducerFencedException, PulsarClientException.ProducerQueueIsFullError, PulsarClientException.TimeoutException, PulsarClientException.TooManyRequestsException, PulsarClientException.TopicDoesNotExistException, PulsarClientException.TopicTerminatedException, PulsarClientException.TransactionConflictException, PulsarClientException.UnsupportedAuthenticationException
-
-
Constructor Summary
Constructors Constructor Description InvalidServiceURL(java.lang.String msg, java.lang.Throwable t)
Constructs anInvalidServiceURL
with the specified cause.InvalidServiceURL(java.lang.Throwable t)
Constructs anInvalidServiceURL
with the specified cause.
-
Method Summary
-
Methods inherited from class org.apache.pulsar.client.api.PulsarClientException
getPreviousExceptions, getPreviousExceptions, getSequenceId, isRetriableError, setPreviousExceptions, setPreviousExceptions, setSequenceId, toString, unwrap, wrap
-
-
-
-
Constructor Detail
-
InvalidServiceURL
public InvalidServiceURL(java.lang.Throwable t)
Constructs anInvalidServiceURL
with the specified cause.- Parameters:
t
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
InvalidServiceURL
public InvalidServiceURL(java.lang.String msg, java.lang.Throwable t)
Constructs anInvalidServiceURL
with the specified cause.- Parameters:
msg
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)t
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-