using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// The exception that is thrown when an unrecognized HRESULT is returned from a COM method call.
// Token: 0x0200059B RID: 1435
[Token(Token = "0x200059B")]
[ComVisible(true)]
[Serializable]
public class COMException : ExternalException
{
/// Initializes a new instance of the class with default values.
// Token: 0x06002CBE RID: 11454 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CBE")]
[Address(RVA = "0x2CE9310", Offset = "0x2CE8310", VA = "0x182CE9310")]
public COMException()
{
}
/// Initializes a new instance of the class with a specified message and error code.
/// The message that indicates the reason the exception occurred.
/// The error code (HRESULT) value associated with this exception.
// Token: 0x06002CBF RID: 11455 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CBF")]
[Address(RVA = "0x2CE9380", Offset = "0x2CE8380", VA = "0x182CE9380")]
public COMException(string message, int errorCode)
{
}
/// Initializes a new instance of the class from serialization data.
/// The object that holds the serialized object data.
/// The object that supplies the contextual information about the source or destination.
///
/// is .
// Token: 0x06002CC0 RID: 11456 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CC0")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected COMException(SerializationInfo info, StreamingContext context)
{
}
/// Converts the contents of the exception to a string.
/// A string containing the , , , and properties of the exception.
// Token: 0x06002CC1 RID: 11457 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002CC1")]
[Address(RVA = "0x2CE9170", Offset = "0x2CE8170", VA = "0x182CE9170", Slot = "3")]
public override string ToString()
{
return null;
}
}
}