16 lines
281 B
C#
16 lines
281 B
C#
using System;
|
|
|
|
namespace PlaneGcsSdk.Contract.EhNetUWP
|
|
{
|
|
public class ExceptionThrownEventArgs : EventArgs
|
|
{
|
|
public ExceptionThrownEventArgs(Exception ex)
|
|
{
|
|
Exception = ex;
|
|
}
|
|
|
|
public Exception Exception { get; set; }
|
|
}
|
|
|
|
}
|