| | 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 the Messaging Entity is not found. Verify Entity Exists. |
| | 10 | | /// </summary> |
| | 11 | | public sealed class MessagingEntityNotFoundException : ServiceBusException |
| | 12 | | { |
| | 13 | | public MessagingEntityNotFoundException(string message) |
| 2 | 14 | | : this(message, null) |
| | 15 | | { |
| 2 | 16 | | } |
| | 17 | |
|
| | 18 | | public MessagingEntityNotFoundException(string message, Exception innerException) |
| 2 | 19 | | : base(false, message, innerException) |
| | 20 | | { |
| 2 | 21 | | } |
| | 22 | | } |
| | 23 | | } |