// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//=============================================================================
//
// Class: InvalidOperationException
//
// Purpose: Exception class for denoting an object was in a state that
// made calling a method illegal.
//
//=============================================================================
namespace System
{
using System;
//|
public class InvalidOperationException : SystemException
{
//|
public InvalidOperationException()
: base("Arg_InvalidOperationException") {
}
//|
public InvalidOperationException(String message)
: base(message) {
}
//|
public InvalidOperationException(String message, Exception innerException)
: base(message, innerException) {
}
}
}