| 1234567891011121314151617181920212223242526 |
- //
- // System.Threading.ThreadAbortException.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (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);
- }
- }
- }
- }
|