using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown for invalid casting or explicit conversion.
// Token: 0x02000110 RID: 272
[Token(Token = "0x2000110")]
[ComVisible(true)]
[Serializable]
public class InvalidCastException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x06000A14 RID: 2580 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A14")]
[Address(RVA = "0x25FC110", Offset = "0x25FAF10", VA = "0x1825FC110")]
public InvalidCastException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x06000A15 RID: 2581 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A15")]
[Address(RVA = "0x25FC0E0", Offset = "0x25FAEE0", VA = "0x1825FC0E0")]
public InvalidCastException(string message)
{
}
/// 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: 0x06000A16 RID: 2582 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A16")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected InvalidCastException(SerializationInfo info, StreamingContext context)
{
}
}
}