ThreadAbortException.cs 393 B

1234567891011121314151617181920212223242526
  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. [Serializable]
  12. public sealed class ThreadAbortException : SystemException
  13. {
  14. private ThreadAbortException () {}
  15. [MonoTODO]
  16. public object ExceptionState {
  17. get {
  18. // FIXME
  19. return(null);
  20. }
  21. }
  22. }
  23. }