using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// The exception that is thrown when an error occurs during event tracing for Windows (ETW).
// Token: 0x020006A1 RID: 1697
[Token(Token = "0x20006A1")]
[Serializable]
public class EventSourceException : Exception
{
/// Initializes a new instance of the class.
// Token: 0x06003211 RID: 12817 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003211")]
[Address(RVA = "0x1E930E0", Offset = "0x1E91EE0", VA = "0x181E930E0")]
public EventSourceException()
{
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception, or if no inner exception is specified.
// Token: 0x06003212 RID: 12818 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003212")]
[Address(RVA = "0x1E93060", Offset = "0x1E91E60", VA = "0x181E93060")]
public EventSourceException(string message, Exception innerException)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
// Token: 0x06003213 RID: 12819 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003213")]
[Address(RVA = "0x1E92FE0", Offset = "0x1E91DE0", VA = "0x181E92FE0")]
protected EventSourceException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06003214 RID: 12820 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003214")]
[Address(RVA = "0x1E92F60", Offset = "0x1E91D60", VA = "0x181E92F60")]
internal EventSourceException(Exception innerException)
{
}
}
}