< Summary

Class:Microsoft.Azure.EventHubs.Processor.EventProcessorConfigurationException
Assembly:Microsoft.Azure.EventHubs.Processor
File(s):C:\Git\azure-sdk-for-net\sdk\eventhub\Microsoft.Azure.EventHubs.Processor\src\EventProcessorConfigurationException.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:23
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-0%100%
.ctor(...)-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventhub\Microsoft.Azure.EventHubs.Processor\src\EventProcessorConfigurationException.cs

#LineLine coverage
 1// Copyright (c) Microsoft. All rights reserved.
 2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
 3
 4namespace Microsoft.Azure.EventHubs.Processor
 5{
 6    using System;
 7
 8    /// <summary>
 9    /// An exception which specifies that the <see cref="EventProcessorHost"/> configuration is incorrect.
 10    /// </summary>
 11    public class EventProcessorConfigurationException : EventHubsException
 12    {
 13        internal EventProcessorConfigurationException(string message)
 014            : this(message, null)
 15        {
 016        }
 17
 18        internal EventProcessorConfigurationException(string message, Exception innerException)
 019            : base(false, message, innerException, ErrorSourceType.UserError)
 20        {
 021        }
 22    }
 23}

Methods/Properties

.ctor(...)
.ctor(...)