using System;
namespace Krs.Ats.IBNet
{
///
/// Update News Bulletin Event Arguments
///
[Serializable()]
public class ReportExceptionEventArgs : EventArgs
{
private Exception error;
///
/// Full constructor.
///
/// The exception that was thrown.
public ReportExceptionEventArgs(Exception error)
{
this.error = error;
}
///
/// Uninitialized Constructor for Serialization
///
public ReportExceptionEventArgs()
{
}
///
/// The exception that was thrown.
///
public Exception Error {
get { return error; }
set { error = value; }
}
}
}