| 123456789101112131415161718192021222324252627282930313233 |
- //
- // System.Threading.ThreadInterruptedException.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System.Runtime.Serialization;
- namespace System.Threading
- {
- [Serializable]
- public class ThreadInterruptedException : SystemException
- {
- public ThreadInterruptedException()
- : base ("Thread interrupted") {
- }
- public ThreadInterruptedException(string message)
- : base (message) {
- }
- protected ThreadInterruptedException(SerializationInfo info, StreamingContext context)
- : base (info, context) {
- }
- public ThreadInterruptedException(string message, Exception innerException)
- : base (message, innerException) {
- }
- }
- }
|