Plane.Sdk3/PlaneGcsSdk.Contract.EhNetUWP/ExceptionThrownEventArgs.cs
2017-02-27 02:02:19 +08:00

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; }
}
}