| | 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.EventHubs.Processor |
| | 5 | | { |
| | 6 | | using System; |
| | 7 | |
|
| | 8 | | /// <summary> |
| | 9 | | /// An exception which specifies that the <see cref="EventProcessorHost"/> configuration is incorrect. |
| | 10 | | /// </summary> |
| | 11 | | public class EventProcessorConfigurationException : EventHubsException |
| | 12 | | { |
| | 13 | | internal EventProcessorConfigurationException(string message) |
| 0 | 14 | | : this(message, null) |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | internal EventProcessorConfigurationException(string message, Exception innerException) |
| 0 | 19 | | : base(false, message, innerException, ErrorSourceType.UserError) |
| | 20 | | { |
| 0 | 21 | | } |
| | 22 | | } |
| | 23 | | } |