singrdk/base/Kernel/System/Threading/ThreadStateException.cs

39 lines
1.2 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: ThreadStateException
**
**
** Purpose: An exception class to indicate that the Thread class is in an
** invalid state for the method.
**
** Date: April 1, 1998
**
=============================================================================*/
namespace System.Threading {
using System;
//| <include path='docs/doc[@for="ThreadStateException"]/*' />
public class ThreadStateException : SystemException {
//| <include path='docs/doc[@for="ThreadStateException.ThreadStateException"]/*' />
public ThreadStateException()
: base("Arg_ThreadStateException") {
}
//| <include path='docs/doc[@for="ThreadStateException.ThreadStateException1"]/*' />
public ThreadStateException(String message)
: base(message) {
}
//| <include path='docs/doc[@for="ThreadStateException.ThreadStateException2"]/*' />
public ThreadStateException(String message, Exception innerException)
: base(message, innerException) {
}
}
}