15 lines
270 B
C#
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; }
|
|
}
|
|
}
|