| 123456789101112131415161718192021222324252627 |
- //
- // System.Threading.ThreadExceptionEventArgs.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Threading
- {
- public class ThreadExceptionEventArgs : EventArgs
- {
- private Exception exception;
-
- public ThreadExceptionEventArgs(Exception t) {
- exception=t;
- }
- public Exception Exception {
- get {
- return(exception);
- }
- }
- }
- }
|