using System;
namespace System.Threading
{
/// Provides data for the event.
/// 2
// Token: 0x020002ED RID: 749
public class ThreadExceptionEventArgs : EventArgs
{
/// Initializes a new instance of the class.
/// The that occurred.
// Token: 0x06001B33 RID: 6963 RVA: 0x00063DC4 File Offset: 0x00061FC4
public ThreadExceptionEventArgs(Exception t)
{
this.exception = t;
}
/// Gets the that occurred.
/// The that occurred.
/// 1
// Token: 0x1700084A RID: 2122
// (get) Token: 0x06001B34 RID: 6964 RVA: 0x00063DD4 File Offset: 0x00061FD4
public Exception Exception
{
get
{
return this.exception;
}
}
// Token: 0x040015D1 RID: 5585
private Exception exception;
}
}