ThreadAbortException.cs 339 B

1234567891011121314151617181920212223
  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. [MonoTODO]
  14. public object ExceptionState {
  15. get {
  16. // FIXME
  17. return(null);
  18. }
  19. }
  20. }
  21. }