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: 0x020006C2 RID: 1730
[Token(Token = "0x20006C2")]
[Serializable]
public class EventSourceException : Exception
{
/// Initializes a new instance of the class.
// Token: 0x0600342C RID: 13356 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600342C")]
[Address(RVA = "0x722C40", Offset = "0x721C40", VA = "0x180722C40")]
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: 0x0600342D RID: 13357 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600342D")]
[Address(RVA = "0x722BC0", Offset = "0x721BC0", VA = "0x180722BC0")]
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: 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)
{
}
}
}