using System; namespace Artemis.Core.Services { /// /// Provides data about endpoint exception related events /// public class EndpointExceptionEventArgs : EventArgs { internal EndpointExceptionEventArgs(Exception exception) { Exception = exception; } /// /// Gets the exception that occurred /// public Exception Exception { get; } } }