2008-03-05 09:52:00 -05:00
|
|
|
// ==++==
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// ==--==
|
2008-11-17 18:29:00 -05:00
|
|
|
//=============================================================================
|
|
|
|
//
|
|
|
|
// Class: NotSupportedException
|
|
|
|
//
|
|
|
|
// Purpose: For methods that should be implemented on subclasses.
|
|
|
|
//
|
|
|
|
//=============================================================================
|
2008-03-05 09:52:00 -05:00
|
|
|
|
2008-11-17 18:29:00 -05:00
|
|
|
namespace System
|
|
|
|
{
|
2008-03-05 09:52:00 -05:00
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
//| <include path='docs/doc[@for="NotSupportedException"]/*' />
|
|
|
|
public class NotSupportedException : SystemException
|
|
|
|
{
|
|
|
|
//| <include path='docs/doc[@for="NotSupportedException.NotSupportedException"]/*' />
|
|
|
|
public NotSupportedException()
|
|
|
|
: base("Arg_NotSupportedException") {
|
|
|
|
}
|
|
|
|
|
|
|
|
//| <include path='docs/doc[@for="NotSupportedException.NotSupportedException1"]/*' />
|
|
|
|
public NotSupportedException(String message)
|
|
|
|
: base(message) {
|
|
|
|
}
|
|
|
|
|
|
|
|
//| <include path='docs/doc[@for="NotSupportedException.NotSupportedException2"]/*' />
|
|
|
|
public NotSupportedException(String message, Exception innerException)
|
|
|
|
: base(message, innerException) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|