singrdk/base/Kernel/System/NotSupportedException.cs

40 lines
1.2 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// 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;
//| <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) {
}
}
}