using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// 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.
// Token: 0x02000119 RID: 281
[Token(Token = "0x2000119")]
[ComVisible(true)]
[Serializable]
public sealed class InvalidProgramException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06000A45 RID: 2629 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A45")]
[Address(RVA = "0x2D67FB0", Offset = "0x2D66FB0", VA = "0x182D67FB0")]
public InvalidProgramException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The error message that explains the reason for the exception.
// 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)
{
}
}
}