// ==++==
//
// 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;
//|
public class ThreadStateException : SystemException {
//|
public ThreadStateException()
: base("Arg_ThreadStateException") {
}
//|
public ThreadStateException(String message)
: base(message) {
}
//|
public ThreadStateException(String message, Exception innerException)
: base(message, innerException) {
}
}
}