// ==++==
//
// 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.
//
//=============================================================================
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) {
}
}
}