Class TopicPublisherException

All Implemented Interfaces:
Serializable

public class TopicPublisherException extends TopicException
An exception that occurred during publishing of a message on a topic.
Since:
21.06
Author:
Jonathan Knight 2021.06.03
See Also:
  • Constructor Details

    • TopicPublisherException

      public TopicPublisherException(String sMessage, Binary binValue, Serializer serializer)
      Parameters:
      sMessage - the exception message
      binValue - the binary value that failed to be published
      serializer - the serializer to deserialize the value
    • TopicPublisherException

      public TopicPublisherException(Throwable cause, Binary binValue, Serializer serializer)
      Parameters:
      cause - the underlying cause of the exception
      binValue - the binary value that failed to be published
      serializer - the serializer to deserialize the value
    • TopicPublisherException

      public TopicPublisherException(String sMessage, Throwable cause, Binary binValue, Serializer serializer)
      Parameters:
      sMessage - the exception message
      cause - the underlying cause of the exception
      binValue - the binary value that failed to be published
      serializer - the serializer to deserialize the value
  • Method Details