using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Reflection
{
/// The exception that is thrown when the binary format of a custom attribute is invalid.
// Token: 0x02000246 RID: 582
[Token(Token = "0x2000246")]
[ComVisible(true)]
[Serializable]
public class CustomAttributeFormatException : FormatException
{
/// Initializes a new instance of the class with the default properties.
// Token: 0x060014F7 RID: 5367 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014F7")]
[Address(RVA = "0x30B6940", Offset = "0x30B5940", VA = "0x1830B6940")]
public CustomAttributeFormatException()
{
}
/// Initializes a new instance of the class with the specified message.
/// The message that indicates the reason this exception was thrown.
// Token: 0x060014F8 RID: 5368 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014F8")]
[Address(RVA = "0xDCB800", Offset = "0xDCA800", VA = "0x180DCB800")]
public CustomAttributeFormatException(string message)
{
}
/// Initializes a new instance of the class with the specified serialization and context information.
/// The data for serializing or deserializing the custom attribute.
/// The source and destination for the custom attribute.
// Token: 0x060014F9 RID: 5369 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014F9")]
[Address(RVA = "0xDCB7E0", Offset = "0xDCA7E0", VA = "0x180DCB7E0")]
protected CustomAttributeFormatException(SerializationInfo info, StreamingContext context)
{
}
}
}