Fix the argument exceptions parameter names usage

This commit is contained in:
Karlen Simonyan 2017-12-18 21:19:52 +01:00
Родитель cef04110ce
Коммит 2ee75d4637
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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);