43 lines
2.0 KiB
C#
43 lines
2.0 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>The exception that is thrown when a feature does not run on a particular platform.</summary>
|
|
// Token: 0x02000132 RID: 306
|
|
[Token(Token = "0x2000132")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class PlatformNotSupportedException : NotSupportedException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.PlatformNotSupportedException" /> class with default properties.</summary>
|
|
// Token: 0x06000AFB RID: 2811 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000AFB")]
|
|
[Address(RVA = "0x2D7BA10", Offset = "0x2D7AA10", VA = "0x182D7BA10")]
|
|
public PlatformNotSupportedException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.PlatformNotSupportedException" /> class with a specified error message.</summary>
|
|
/// <param name="message">The text message that explains the reason for the exception.</param>
|
|
// Token: 0x06000AFC RID: 2812 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000AFC")]
|
|
[Address(RVA = "0x2D7B9D0", Offset = "0x2D7A9D0", VA = "0x182D7B9D0")]
|
|
public PlatformNotSupportedException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.PlatformNotSupportedException" /> 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: 0x06000AFD RID: 2813 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000AFD")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
protected PlatformNotSupportedException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|