Allow getting config options and add multiple overloads for set

This commit is contained in:
Matias Fontanini
2016-06-05 15:08:40 -07:00
parent efd2321828
commit 65a60f1690
11 changed files with 120 additions and 5 deletions

View File

@@ -21,6 +21,11 @@ public:
ConfigException(const std::string& config_name, const std::string& error);
};
class ConfigOptionNotFound : public Exception {
public:
ConfigOptionNotFound(const std::string& config_name);
};
class HandleException : public Exception {
public:
HandleException(rd_kafka_resp_err_t error_code);