ThreadInterruptedException.cs 700 B

123456789101112131415161718192021222324252627282930313233
  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. [Serializable]
  13. public class ThreadInterruptedException : SystemException
  14. {
  15. public ThreadInterruptedException()
  16. : base ("Thread interrupted") {
  17. }
  18. public ThreadInterruptedException(string message)
  19. : base (message) {
  20. }
  21. protected ThreadInterruptedException(SerializationInfo info, StreamingContext context)
  22. : base (info, context) {
  23. }
  24. public ThreadInterruptedException(string message, Exception innerException)
  25. : base (message, innerException) {
  26. }
  27. }
  28. }