Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ThreadInterruptedException.cs « System.Threading « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6a82ec6aad01614ddbb4fcfbd93169d6c29b7e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// System.Threading.ThreadInterruptedException.cs
//
// Author:
//   Dick Porter (dick@ximian.com)
//
// (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) {
		}
	}
}