using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.
// Token: 0x02000127 RID: 295
[Token(Token = "0x2000127")]
[ComVisible(true)]
[Serializable]
public class NotSupportedException : SystemException
{
/// Initializes a new instance of the class, setting the property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture.
// Token: 0x06000AA6 RID: 2726 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AA6")]
[Address(RVA = "0x2D6E8E0", Offset = "0x2D6D8E0", VA = "0x182D6E8E0")]
public NotSupportedException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// A that describes the error. The content of is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
// Token: 0x06000AA7 RID: 2727 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AA7")]
[Address(RVA = "0x2D6E940", Offset = "0x2D6D940", VA = "0x182D6E940")]
public NotSupportedException(string message)
{
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception. If the parameter is not a null reference, the current exception is raised in a block that handles the inner exception.
// Token: 0x06000AA8 RID: 2728 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AA8")]
[Address(RVA = "0x2D6E8B0", Offset = "0x2D6D8B0", VA = "0x182D6E8B0")]
public NotSupportedException(string message, Exception innerException)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
// Token: 0x06000AA9 RID: 2729 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AA9")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected NotSupportedException(SerializationInfo info, StreamingContext context)
{
}
}
}