Files
2026-06-04 11:42:34 +02:00

54 lines
2.6 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System
{
/// <summary>The exception that is thrown when a requested method or operation is not implemented.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x02000694 RID: 1684
[ComVisible(true)]
[Serializable]
public class NotImplementedException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.NotImplementedException" /> class with default properties.</summary>
// Token: 0x06003FDC RID: 16348 RVA: 0x000D7970 File Offset: 0x000D5B70
public NotImplementedException()
: base(Locale.GetText("The requested feature is not implemented."))
{
base.HResult = -2147467263;
}
/// <summary>Initializes a new instance of the <see cref="T:System.NotImplementedException" /> class with a specified error message.</summary>
/// <param name="message">The error message that explains the reason for the exception. </param>
// Token: 0x06003FDD RID: 16349 RVA: 0x000D7990 File Offset: 0x000D5B90
public NotImplementedException(string message)
: base(message)
{
base.HResult = -2147467263;
}
/// <summary>Initializes a new instance of the <see cref="T:System.NotImplementedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception. </param>
/// <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param>
// Token: 0x06003FDE RID: 16350 RVA: 0x000D79A4 File Offset: 0x000D5BA4
public NotImplementedException(string message, Exception inner)
: base(message, inner)
{
base.HResult = -2147467263;
}
/// <summary>Initializes a new instance of the <see cref="T:System.NotImplementedException" /> class with serialized data.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param>
// Token: 0x06003FDF RID: 16351 RVA: 0x000D79BC File Offset: 0x000D5BBC
protected NotImplementedException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
// Token: 0x0400194D RID: 6477
private const int Result = -2147467263;
}
}