|
|
@@ -0,0 +1,26 @@
|
|
|
+//
|
|
|
+// System.Threading.ThreadExceptionEventArgs.cs
|
|
|
+//
|
|
|
+// Author:
|
|
|
+// Dick Porter ([email protected])
|
|
|
+//
|
|
|
+// (C) Ximian, Inc. http://www.ximian.com
|
|
|
+//
|
|
|
+
|
|
|
+
|
|
|
+namespace System.Threading
|
|
|
+{
|
|
|
+ public class ThreadExceptionEventArgs : EventArgs
|
|
|
+ {
|
|
|
+ public ThreadExceptionEventArgs(Exception t) {
|
|
|
+ // blah
|
|
|
+ }
|
|
|
+
|
|
|
+ public Exception Exception {
|
|
|
+ get {
|
|
|
+ return new Exception();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|