| | 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 | |
|
| | 4 | | namespace 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 | | { |
| 0 | 13 | | public ServiceBusTimeoutException(string message) : this(message, null) |
| | 14 | | { |
| 0 | 15 | | } |
| | 16 | |
|
| 0 | 17 | | public ServiceBusTimeoutException(string message, Exception innerException) : base(true, message, innerException |
| | 18 | | { |
| 0 | 19 | | } |
| | 20 | | } |
| | 21 | | } |