namespace WatsonTcp
{
using System;
///
/// Event arguments for when an exception is encountered.
///
public class ExceptionEventArgs
{
#region Public-Members
///
/// Exception.
///
public Exception Exception { get; }
#endregion
#region Private-Members
#endregion
#region Constructors-and-Factories
internal ExceptionEventArgs(Exception e)
{
if (e == null) throw new ArgumentNullException(nameof(e));
Exception = e;
}
#endregion
#region Public-Methods
#endregion
#region Private-Methods
#endregion
}
}