//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.Threading { using System.Threading; using System.Diagnostics; using System; /// /// /// Provides data for the System.Windows.Forms.Application.ThreadException event. /// /// public class ThreadExceptionEventArgs : EventArgs { private Exception exception; /// /// /// Initializes a new instance of the class. /// /// public ThreadExceptionEventArgs(Exception t) { exception = t; } /// /// Specifies the that occurred. /// public Exception Exception { get { return exception; } } } }