using System; namespace PlaneGcsSdk.Contract.EhNetUWP { public class ExceptionThrownEventArgs : EventArgs { public ExceptionThrownEventArgs(Exception ex) { Exception = ex; } public Exception Exception { get; set; } } }