ConfigurationError is the type of error returned from a constructor (e.g. NewClient, or NewConsumer) when the specified configuration is invalid.
| 165 | // ConfigurationError is the type of error returned from a constructor (e.g. NewClient, or NewConsumer) |
| 166 | // when the specified configuration is invalid. |
| 167 | type ConfigurationError string |
| 168 | |
| 169 | func (err ConfigurationError) Error() string { |
| 170 | return "kafka: invalid configuration (" + string(err) + ")" |
no outgoing calls
no test coverage detected