using System;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when a time zone cannot be found.
// Token: 0x02000154 RID: 340
[Token(Token = "0x2000154")]
[TypeForwardedFrom("System.Core, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=7cec85d7bea7798e")]
[Serializable]
public class TimeZoneNotFoundException : Exception
{
/// 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.
/// A string that describes the exception.
/// The exception that is the cause of the current exception.
// Token: 0x06000D77 RID: 3447 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000D77")]
[Address(RVA = "0xF7B4A0", Offset = "0xF7A4A0", VA = "0x180F7B4A0")]
public TimeZoneNotFoundException(string message, Exception innerException)
{
}
/// Initializes a new instance of the class from serialized data.
/// The object that contains the serialized data.
/// The stream that contains the serialized data.
/// The parameter is .
/// -or-
/// The parameter is .
// Token: 0x06000D78 RID: 3448 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000D78")]
[Address(RVA = "0xF7B520", Offset = "0xF7A520", VA = "0x180F7B520")]
protected TimeZoneNotFoundException(SerializationInfo info, StreamingContext context)
{
}
/// Initializes a new instance of the class with a system-supplied message.
// Token: 0x06000D79 RID: 3449 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000D79")]
[Address(RVA = "0xF7B440", Offset = "0xF7A440", VA = "0x180F7B440")]
public TimeZoneNotFoundException()
{
}
}
}