using System; using System.Runtime.Serialization; namespace System { /// The exception that is thrown when time zone information is invalid. // Token: 0x02000055 RID: 85 [Serializable] public class InvalidTimeZoneException : Exception { /// Initializes a new instance of the class with a system-supplied message. // Token: 0x06000499 RID: 1177 RVA: 0x00016F5C File Offset: 0x0001515C public InvalidTimeZoneException() { } /// Initializes a new instance of the class with the specified message string. /// A string that describes the exception. // Token: 0x0600049A RID: 1178 RVA: 0x00016F64 File Offset: 0x00015164 public InvalidTimeZoneException(string message) : base(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: 0x0600049B RID: 1179 RVA: 0x00016F70 File Offset: 0x00015170 public InvalidTimeZoneException(string message, Exception e) : base(message, e) { } /// 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 null.-or-The parameter is null. // Token: 0x0600049C RID: 1180 RVA: 0x00016F7C File Offset: 0x0001517C protected InvalidTimeZoneException(SerializationInfo info, StreamingContext sc) : base(info, sc) { } } }