40 lines
1.6 KiB
C#
40 lines
1.6 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>The exception that is thrown when a program contains invalid Microsoft intermediate language (MSIL) or metadata. Generally this indicates a bug in the compiler that generated the program.</summary>
|
|
// Token: 0x02000119 RID: 281
|
|
[Token(Token = "0x2000119")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public sealed class InvalidProgramException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidProgramException" /> class with default properties.</summary>
|
|
// Token: 0x06000A45 RID: 2629 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A45")]
|
|
[Address(RVA = "0x2D67FB0", Offset = "0x2D66FB0", VA = "0x182D67FB0")]
|
|
public InvalidProgramException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidProgramException" /> class with a specified error message.</summary>
|
|
/// <param name="message">The error message that explains the reason for the exception.</param>
|
|
// Token: 0x06000A46 RID: 2630 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A46")]
|
|
[Address(RVA = "0x2D67F80", Offset = "0x2D66F80", VA = "0x182D67F80")]
|
|
public InvalidProgramException(string message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000A47 RID: 2631 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A47")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
internal InvalidProgramException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|