| | | 1 | | // Copyright (c) Microsoft. All rights reserved. |
| | | 2 | | // Licensed under the MIT license. See LICENSE file in the project root for full license information.using System; |
| | | 3 | | |
| | | 4 | | namespace Microsoft.Azure.EventHubs.ServiceFabricProcessor |
| | | 5 | | { |
| | | 6 | | using System; |
| | | 7 | | |
| | | 8 | | /// <summary> |
| | | 9 | | /// Exception thrown when the configuration of the service has a problem. |
| | | 10 | | /// </summary> |
| | | 11 | | public class EventProcessorConfigurationException : Exception |
| | | 12 | | { |
| | | 13 | | /// <summary> |
| | | 14 | | /// Construct the exception. |
| | | 15 | | /// </summary> |
| | | 16 | | /// <param name="message"></param> |
| | 4 | 17 | | public EventProcessorConfigurationException(string message) : base(message) |
| | | 18 | | { |
| | 4 | 19 | | } |
| | | 20 | | } |
| | | 21 | | } |