Spring Integration Kafka Support

org.springframework.integration.kafka.core
Class ConsumerException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.integration.kafka.core.ConsumerException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
TopicNotFoundException

public class ConsumerException
extends java.lang.RuntimeException

Wraps exceptions thrown by SimpleConsumer calls. Because the client is originally written in Scala, checked exceptions are missing from the method signatures and cannot be caught directly.

Author:
Marius Bogoevici
See Also:
Serialized Form

Constructor Summary
ConsumerException(java.lang.String message)
           
ConsumerException(java.lang.Throwable cause)
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConsumerException

public ConsumerException(java.lang.Throwable cause)

ConsumerException

public ConsumerException(java.lang.String message)

Spring Integration Kafka Support