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: 0x0200023F RID: 575
[Token(Token = "0x200023F")]
[ComVisible(true)]
[Serializable]
public class CustomAttributeFormatException : FormatException
{
/// Initializes a new instance of the class with the default properties.
// Token: 0x060014B8 RID: 5304 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014B8")]
[Address(RVA = "0x2A047E0", Offset = "0x2A035E0", VA = "0x182A047E0")]
public CustomAttributeFormatException()
{
}
/// Initializes a new instance of the class with the specified message.
/// The message that indicates the reason this exception was thrown.
// Token: 0x060014B9 RID: 5305 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014B9")]
[Address(RVA = "0x71DAB0", Offset = "0x71C8B0", VA = "0x18071DAB0")]
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: 0x060014BA RID: 5306 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014BA")]
[Address(RVA = "0x71DAA0", Offset = "0x71C8A0", VA = "0x18071DAA0")]
protected CustomAttributeFormatException(SerializationInfo info, StreamingContext context)
{
}
}
}