// ReSharper disable MemberCanBePrivate.Global // ReSharper disable UnusedAutoPropertyAccessor.Global using System; namespace CUE.NET.Devices.Generic { /// /// Represents the information supplied with an OnException-event. /// public class OnExceptionEventArgs : EventArgs { #region Properties & Fields /// /// Gets the exception which is responsible for the event-call. /// public Exception Exception { get; } #endregion #region Constructors /// /// Initializes a new instance of the class. /// /// The exception which is responsible for the event-call. public OnExceptionEventArgs(Exception exception) { this.Exception = exception; } #endregion } }