49 lines
2.3 KiB
C#
49 lines
2.3 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Diagnostics.Tracing
|
|
{
|
|
/// <summary>The exception that is thrown when an error occurs during event tracing for Windows (ETW).</summary>
|
|
// Token: 0x020006C2 RID: 1730
|
|
[Token(Token = "0x20006C2")]
|
|
[Serializable]
|
|
public class EventSourceException : Exception
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceException" /> class.</summary>
|
|
// Token: 0x0600342C RID: 13356 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600342C")]
|
|
[Address(RVA = "0x722C40", Offset = "0x721C40", VA = "0x180722C40")]
|
|
public EventSourceException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceException" /> 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="innerException">The exception that is the cause of the current exception, or <see langword="null" /> if no inner exception is specified.</param>
|
|
// Token: 0x0600342D RID: 13357 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600342D")]
|
|
[Address(RVA = "0x722BC0", Offset = "0x721BC0", VA = "0x180722BC0")]
|
|
public EventSourceException(string message, Exception innerException)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceException" /> class with serialized 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>
|
|
// Token: 0x0600342E RID: 13358 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600342E")]
|
|
[Address(RVA = "0x722B40", Offset = "0x721B40", VA = "0x180722B40")]
|
|
protected EventSourceException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600342F RID: 13359 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600342F")]
|
|
[Address(RVA = "0x722AC0", Offset = "0x721AC0", VA = "0x180722AC0")]
|
|
internal EventSourceException(Exception innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|