mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 09:08:34 +00:00
23 lines
387 B
C#
23 lines
387 B
C#
using System;
|
|
|
|
namespace CUE.NET.Devices.Generic
|
|
{
|
|
public class OnExceptionEventArgs : EventArgs
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public Exception Exception { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public OnExceptionEventArgs(Exception exception)
|
|
{
|
|
this.Exception = exception;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|