Allow getting consumer group information

This commit is contained in:
Matias Fontanini
2017-04-16 19:45:03 -07:00
parent ebde747e18
commit dbb547889b
15 changed files with 544 additions and 116 deletions

View File

@@ -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
*/