Plane.Sdk3/PlaneGcsSdk.Contract_Shared/Communication/ExceptionThrownEventArgs.cs

15 lines
270 B
C#
Raw Normal View History

2017-02-27 02:02:19 +08:00
using System;
namespace Plane.Communication
{
public class ExceptionThrownEventArgs : EventArgs
{
public ExceptionThrownEventArgs(Exception ex)
{
Exception = ex;
}
public Exception Exception { get; set; }
}
}