ThreadInterruptedException.cs 684 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Threading.ThreadInterruptedException.cs
  3. //
  4. // Author:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. using System.Runtime.Serialization;
  10. namespace System.Threading
  11. {
  12. public class ThreadInterruptedException : SystemException
  13. {
  14. public ThreadInterruptedException()
  15. : base ("Thread interrupted") {
  16. }
  17. public ThreadInterruptedException(string message)
  18. : base (message) {
  19. }
  20. protected ThreadInterruptedException(SerializationInfo info, StreamingContext context)
  21. : base (info, context) {
  22. }
  23. public ThreadInterruptedException(string message, Exception innerException)
  24. : base (message, innerException) {
  25. }
  26. }
  27. }