ThreadAbortException.cs 326 B

12345678910111213141516171819202122
  1. //
  2. // System.Threading.ThreadAbortException.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 sealed class ThreadAbortException : SystemException
  12. {
  13. public object ExceptionState {
  14. get {
  15. // FIXME
  16. return(null);
  17. }
  18. }
  19. }
  20. }