// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global
using System;
namespace CUE.NET.Devices.Generic.EventArgs
{
///
/// Represents the information supplied with an -event.
///
public class ExceptionEventArgs : System.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 ExceptionEventArgs(Exception exception)
{
this.Exception = exception;
}
#endregion
}
}