Error_EventArgs.cs
上传用户:horngjaan
上传日期:2009-12-12
资源大小:2882k
文件大小:1k
- using System;
- using System.Diagnostics;
- namespace LumiSoft.MailServer
- {
- /// <summary>
- /// Provides data for the SysError event for POP3_Server and SMTP_Server.
- /// </summary>
- public class Error_EventArgs
- {
- private Exception m_pException = null;
- private StackTrace m_pStackTrace = null;
- /// <summary>
- /// Default constructor.
- /// </summary>
- /// <param name="x"></param>
- /// <param name="stackTrace"></param>
- public Error_EventArgs(Exception x,StackTrace stackTrace)
- {
- m_pException = x;
- m_pStackTrace = stackTrace;
- }
- #region Properties Implementaion
- /// <summary>
- /// Occured error's exception.
- /// </summary>
- public Exception Exception
- {
- get{ return m_pException; }
- }
- /// <summary>
- /// Occured error's stacktrace.
- /// </summary>
- public StackTrace StackTrace
- {
- get{ return m_pStackTrace; }
- }
- #endregion
- }
- }