17 lines
273 B
C#
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;
|
|
}
|
|
|
|
}
|