sdk/servicebus/Microsoft.Azure.ServiceBus/src/ServiceBusCommunicationException.cs (16 lines of code) (raw):

// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.Azure.ServiceBus { using System; /// <summary> /// Exception for signaling general communication errors related to messaging operations. /// </summary> public class ServiceBusCommunicationException : ServiceBusException { public ServiceBusCommunicationException(string message) : this(message, null) { } public ServiceBusCommunicationException(string message, Exception innerException) : base(true, message, innerException) { } } }