mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-cppkafka.git
synced 2025-11-01 02:57:53 +00:00
Allow getting consumer group information
This commit is contained in:
@@ -74,6 +74,30 @@ public:
|
||||
InvalidConfigOptionType(const std::string& config_name, const std::string& type);
|
||||
};
|
||||
|
||||
/**
|
||||
* Indicates something that was being looked up failed to be found
|
||||
*/
|
||||
class CPPKAFKA_API ElementNotFound : public Exception {
|
||||
public:
|
||||
ElementNotFound(const std::string& element_type, const std::string& name);
|
||||
};
|
||||
|
||||
/**
|
||||
* Indicates something that was incorrectly parsed
|
||||
*/
|
||||
class CPPKAFKA_API ParseException : public Exception {
|
||||
public:
|
||||
ParseException(const std::string& message);
|
||||
};
|
||||
|
||||
/**
|
||||
* Indicates something had an unexpected versiom
|
||||
*/
|
||||
class CPPKAFKA_API UnexpectedVersion : public Exception {
|
||||
public:
|
||||
UnexpectedVersion(uint32_t version);
|
||||
};
|
||||
|
||||
/**
|
||||
* A generic rdkafka handle error
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user