< Summary

Class:Microsoft.Azure.ServiceBus.QuotaExceededException
Assembly:Microsoft.Azure.ServiceBus
File(s):C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.ServiceBus\src\QuotaExceededException.cs
Covered lines:4
Uncovered lines:0
Coverable lines:4
Total lines:24
Line coverage:100% (4 of 4)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.ServiceBus\src\QuotaExceededException.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
 5{
 6    using System;
 7
 8    /// <summary>
 9    /// The exception that is thrown when the Quota (Entity Max Size or other Connection etc) allocated to the Entity ha
 10    /// error message to see which of the Quota exceeded and take appropriate action.
 11    /// </summary>
 12    public sealed class QuotaExceededException : ServiceBusException
 13    {
 14        public QuotaExceededException(string message)
 215            : this(message, null)
 16        {
 217        }
 18
 19        public QuotaExceededException(string message, Exception innerException)
 220            : base(false, message, innerException)
 21        {
 222        }
 23    }
 24}

Methods/Properties

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