confluent-kafka-dotnet
Show / Hide Table of Contents

Class DescribeConsumerGroupsException

Represents an error that occured during a describe consumer group operation.

Inheritance
object
Exception
KafkaException
DescribeConsumerGroupsException
Implements
ISerializable
Inherited Members
KafkaException.Error
Exception.GetBaseException()
Exception.GetObjectData(SerializationInfo, StreamingContext)
Exception.GetType()
Exception.ToString()
Exception.Data
Exception.HelpLink
Exception.HResult
Exception.InnerException
Exception.Message
Exception.Source
Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class DescribeConsumerGroupsException : KafkaException, ISerializable

Constructors

DescribeConsumerGroupsException(DescribeConsumerGroupsReport)

Initialize a new instance of DescribeConsumerGroupsException.

Declaration
public DescribeConsumerGroupsException(DescribeConsumerGroupsReport results)
Parameters
Type Name Description
DescribeConsumerGroupsReport results

The result corresponding to all groups in the request (whether or not they were in error). At least one of these results will be in error.

Properties

Results

The result corresponding to all groups in the request, (whether or not they were in error). At least one of these results will be in error.

Declaration
public DescribeConsumerGroupsReport Results { get; }
Property Value
Type Description
DescribeConsumerGroupsReport

Implements

ISerializable
In this article