|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
namespace System
{
/// <summary>
/// The exception that is thrown when a requested method or operation is not implemented.
/// </summary>
[Serializable]
[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
public class NotImplementedException : SystemException
{
public NotImplementedException()
: base(SR.Arg_NotImplementedException)
{
HResult = HResults.E_NOTIMPL;
}
public NotImplementedException(string? message)
: base(message ?? SR.Arg_NotImplementedException)
{
HResult = HResults.E_NOTIMPL;
}
public NotImplementedException(string? message, Exception? inner)
: base(message ?? SR.Arg_NotImplementedException, inner)
{
HResult = HResults.E_NOTIMPL;
}
[Obsolete(Obsoletions.LegacyFormatterImplMessage, DiagnosticId = Obsoletions.LegacyFormatterImplDiagId, UrlFormat = Obsoletions.SharedUrlFormat)]
[EditorBrowsable(EditorBrowsableState.Never)]
protected NotImplementedException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
|