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

15 lines
270 B
C#

using System;
namespace Plane.Communication
{
public class ExceptionThrownEventArgs : EventArgs
{
public ExceptionThrownEventArgs(Exception ex)
{
Exception = ex;
}
public Exception Exception { get; set; }
}
}