using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when a requested method or operation is not implemented.
// Token: 0x02000126 RID: 294
[Token(Token = "0x2000126")]
[ComVisible(true)]
[Serializable]
public class NotImplementedException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06000AA3 RID: 2723 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AA3")]
[Address(RVA = "0x2D6E820", Offset = "0x2D6D820", VA = "0x182D6E820")]
public NotImplementedException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The error message that explains the reason for the exception.
// Token: 0x06000AA4 RID: 2724 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AA4")]
[Address(RVA = "0x2D6E880", Offset = "0x2D6D880", VA = "0x182D6E880")]
public NotImplementedException(string message)
{
}
/// Initializes a new instance of the class with serialized data.
/// The that holds the serialized object data about the exception being thrown.
/// The that contains contextual information about the source or destination.
// Token: 0x06000AA5 RID: 2725 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AA5")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected NotImplementedException(SerializationInfo info, StreamingContext context)
{
}
}
}