Fix the argument exceptions parameter names usage
This commit is contained in:
Родитель
cef04110ce
Коммит
2ee75d4637
|
@ -78,7 +78,7 @@ namespace Kafka.Client.Consumers
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(config.GroupId))
|
if (string.IsNullOrEmpty(config.GroupId))
|
||||||
{
|
{
|
||||||
throw new ArgumentNullException("GroupId of ConsumerConfiguration should not be empty.");
|
throw new ArgumentException("GroupId of ConsumerConfiguration should not be empty.", nameof(config));
|
||||||
}
|
}
|
||||||
Logger.Info("Enter ZookeeperConsumerConnector ...");
|
Logger.Info("Enter ZookeeperConsumerConnector ...");
|
||||||
try
|
try
|
||||||
|
@ -555,7 +555,7 @@ namespace Kafka.Client.Consumers
|
||||||
|
|
||||||
if (topicCountDict == null)
|
if (topicCountDict == null)
|
||||||
{
|
{
|
||||||
throw new ArgumentNullException();
|
throw new ArgumentNullException(nameof(topicCountDict));
|
||||||
}
|
}
|
||||||
|
|
||||||
var dirs = new ZKGroupDirs(this.config.GroupId);
|
var dirs = new ZKGroupDirs(this.config.GroupId);
|
||||||
|
|
|
@ -952,7 +952,7 @@ namespace Kafka.Client.ZooKeeperIntegration
|
||||||
{
|
{
|
||||||
if (path == null)
|
if (path == null)
|
||||||
{
|
{
|
||||||
throw new ArgumentNullException("Path must not be null");
|
throw new ArgumentNullException(nameof(path), "Path must not be null");
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] bytes = data == null ? null : this.serializer.Serialize(data);
|
byte[] bytes = data == null ? null : this.serializer.Serialize(data);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче