ThreadExceptionEventArgs.cs 415 B

123456789101112131415161718192021222324252627
  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. private Exception exception;
  14. public ThreadExceptionEventArgs(Exception t) {
  15. exception=t;
  16. }
  17. public Exception Exception {
  18. get {
  19. return(exception);
  20. }
  21. }
  22. }
  23. }