< Summary

Class:Microsoft.Azure.ServiceBus.ServiceBusTimeoutException
Assembly:Microsoft.Azure.ServiceBus
File(s):C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.ServiceBus\src\ServiceBusTimeoutException.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:21
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\ServiceBusTimeoutException.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 a time out is encountered.  Callers retry the operation.
 10    /// </summary>
 11    public class ServiceBusTimeoutException : ServiceBusException
 12    {
 013        public ServiceBusTimeoutException(string message) : this(message, null)
 14        {
 015        }
 16
 017        public ServiceBusTimeoutException(string message, Exception innerException) : base(true, message, innerException
 18        {
 019        }
 20    }
 21}

Methods/Properties

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