ThreadExceptionEventArgs.cs 384 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Threading.ThreadExceptionEventArgs.cs
  3. //
  4. // Author:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Threading
  10. {
  11. public class ThreadExceptionEventArgs : EventArgs
  12. {
  13. public ThreadExceptionEventArgs(Exception t) {
  14. // blah
  15. }
  16. public Exception Exception {
  17. get {
  18. return new Exception();
  19. }
  20. }
  21. }
  22. }