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