using System; using System.Runtime.CompilerServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when time zone information is invalid. // Token: 0x02000113 RID: 275 [Token(Token = "0x2000113")] [TypeForwardedFrom("System.Core, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=7cec85d7bea7798e")] [Serializable] public class InvalidTimeZoneException : Exception { /// Initializes a new instance of the class with the specified message string. /// A string that describes the exception. // Token: 0x06000A1E RID: 2590 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A1E")] [Address(RVA = "0x25FC420", Offset = "0x25FB220", VA = "0x1825FC420")] public InvalidTimeZoneException(string message) { } /// 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: 0x06000A1F RID: 2591 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A1F")] [Address(RVA = "0x25FC2C0", Offset = "0x25FB0C0", VA = "0x1825FC2C0")] public InvalidTimeZoneException(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: 0x06000A20 RID: 2592 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A20")] [Address(RVA = "0x25FC3A0", Offset = "0x25FB1A0", VA = "0x1825FC3A0")] protected InvalidTimeZoneException(SerializationInfo info, StreamingContext context) { } /// Initializes a new instance of the class with a system-supplied message. // Token: 0x06000A21 RID: 2593 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A21")] [Address(RVA = "0x25FC340", Offset = "0x25FB140", VA = "0x1825FC340")] public InvalidTimeZoneException() { } } }