// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: NotSupportedException
**
**
** Purpose: For methods that should be implemented on subclasses.
**
** Date: September 28, 1998
**
=============================================================================*/
namespace System {
using System;
//|
public class NotSupportedException : SystemException
{
//|
public NotSupportedException()
: base("Arg_NotSupportedException") {
}
//|
public NotSupportedException(String message)
: base(message) {
}
//|
public NotSupportedException(String message, Exception innerException)
: base(message, innerException) {
}
}
}