< Summary

Class:Microsoft.Azure.ServiceBus.Management.MessagingEntityAlreadyExistsException
Assembly:Microsoft.Azure.ServiceBus
File(s):C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.ServiceBus\src\Management\MessagingEntityAlreadyExistsException.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:22
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\servicebus\Microsoft.Azure.ServiceBus\src\Management\MessagingEntityAlreadyExistsException.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.ServiceBus.Management
 5{
 6    using System;
 7
 8    /// <summary>
 9    /// The exception that is thrown when an already existing entity is being re created.
 10    /// </summary>
 11    public class MessagingEntityAlreadyExistsException : ServiceBusException
 12    {
 013        public MessagingEntityAlreadyExistsException(string message) : this(message, null)
 14        {
 015        }
 16
 17        public MessagingEntityAlreadyExistsException(string message, Exception innerException)
 018            : base(false, message, innerException)
 19        {
 020        }
 21    }
 22}

Methods/Properties

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