laatzen/Common/Utils/Logging/EventArguments/ExceptionEventArgs.cs
2021-10-01 11:09:20 +02:00

17 lines
273 B
C#

using System;
namespace Xylem.Common.Utils.Logging.EventArguments
{
[Serializable]
public class ExceptionEventArgs : EventArgs
{
public ExceptionEventArgs(Exception ex)
{
Ex = ex;
}
public Exception Ex;
}
}