< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\eventhub\Microsoft.Azure.EventHubs.ServiceFabricProcessor\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.using System;
 3
 4namespace Microsoft.Azure.EventHubs.ServiceFabricProcessor
 5{
 6    using System;
 7
 8    /// <summary>
 9    /// Exception thrown when the configuration of the service has a problem.
 10    /// </summary>
 11    public class EventProcessorConfigurationException : Exception
 12    {
 13        /// <summary>
 14        /// Construct the exception.
 15        /// </summary>
 16        /// <param name="message"></param>
 417        public EventProcessorConfigurationException(string message) : base(message)
 18        {
 419        }
 20    }
 21}

Methods/Properties

.ctor(...)