Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

89 lines
4.1 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// <summary>The base exception type for all COM interop exceptions and structured exception handling (SEH) exceptions.</summary>
// Token: 0x0200059D RID: 1437
[Token(Token = "0x200059D")]
[ComVisible(true)]
[Serializable]
public class ExternalException : SystemException
{
/// <summary>Initializes a new instance of the <see langword="ExternalException" /> class with default properties.</summary>
// Token: 0x06002CC2 RID: 11458 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CC2")]
[Address(RVA = "0x2CEE010", Offset = "0x2CED010", VA = "0x182CEE010")]
public ExternalException()
{
}
/// <summary>Initializes a new instance of the <see langword="ExternalException" /> class with a specified error message.</summary>
/// <param name="message">The error message that specifies the reason for the exception.</param>
// Token: 0x06002CC3 RID: 11459 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CC3")]
[Address(RVA = "0x2CEE0A0", Offset = "0x2CED0A0", VA = "0x182CEE0A0")]
public ExternalException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ExternalException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// Token: 0x06002CC4 RID: 11460 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CC4")]
[Address(RVA = "0x2CEE070", Offset = "0x2CED070", VA = "0x182CEE070")]
public ExternalException(string message, Exception inner)
{
}
/// <summary>Initializes a new instance of the <see langword="ExternalException" /> class with a specified error message and the HRESULT of the error.</summary>
/// <param name="message">The error message that specifies the reason for the exception.</param>
/// <param name="errorCode">The HRESULT of the error.</param>
// Token: 0x06002CC5 RID: 11461 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CC5")]
[Address(RVA = "0xCBE600", Offset = "0xCBD600", VA = "0x180CBE600")]
public ExternalException(string message, int errorCode)
{
}
/// <summary>Initializes a new instance of the <see langword="ExternalException" /> class from serialization data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x06002CC6 RID: 11462 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CC6")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected ExternalException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Gets the <see langword="HRESULT" /> of the error.</summary>
/// <returns>The <see langword="HRESULT" /> of the error.</returns>
// Token: 0x170006C9 RID: 1737
// (get) Token: 0x06002CC7 RID: 11463 RVA: 0x00018E10 File Offset: 0x00017010
[Token(Token = "0x170006C9")]
public virtual int ErrorCode
{
[Token(Token = "0x6002CC7")]
[Address(RVA = "0x66A4F0", Offset = "0x6694F0", VA = "0x18066A4F0", Slot = "12")]
get
{
return 0;
}
}
/// <summary>Returns a string that contains the HRESULT of the error.</summary>
/// <returns>A string that represents the HRESULT.</returns>
// Token: 0x06002CC8 RID: 11464 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002CC8")]
[Address(RVA = "0x2CEDE70", Offset = "0x2CECE70", VA = "0x182CEDE70", Slot = "3")]
public override string ToString()
{
return null;
}
}
}