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

ThreadAbortException.cs « System.Threading « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d91ef0a79df3da2586563bb8c27573f13e711241 (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
//
// System.Threading.ThreadAbortException.cs
//
// Author:
//   Dick Porter (dick@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//


namespace System.Threading
{
	[Serializable]
	public sealed class ThreadAbortException : SystemException
	{
		private ThreadAbortException () {}

		[MonoTODO]
		public object ExceptionState {
			get {
				// FIXME
				return(null);
			}
		}
	}
}