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