Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/InvalidTimeZoneException.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

56 lines
2.7 KiB
C#

using System;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when time zone information is invalid.</summary>
// Token: 0x0200011A RID: 282
[Token(Token = "0x200011A")]
[TypeForwardedFrom("System.Core, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=7cec85d7bea7798e")]
[Serializable]
public class InvalidTimeZoneException : Exception
{
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidTimeZoneException" /> class with the specified message string.</summary>
/// <param name="message">A string that describes the exception.</param>
// Token: 0x06000A48 RID: 2632 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A48")]
[Address(RVA = "0x2D68170", Offset = "0x2D67170", VA = "0x182D68170")]
public InvalidTimeZoneException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidTimeZoneException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">A string that describes the exception.</param>
/// <param name="innerException">The exception that is the cause of the current exception.</param>
// Token: 0x06000A49 RID: 2633 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A49")]
[Address(RVA = "0x2D68010", Offset = "0x2D67010", VA = "0x182D68010")]
public InvalidTimeZoneException(string message, Exception innerException)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidTimeZoneException" /> class from serialized data.</summary>
/// <param name="info">The object that contains the serialized data.</param>
/// <param name="context">The stream that contains the serialized data.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is <see langword="null" />.
/// -or-
/// The <paramref name="context" /> parameter is <see langword="null" />.</exception>
// Token: 0x06000A4A RID: 2634 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A4A")]
[Address(RVA = "0x2D680F0", Offset = "0x2D670F0", VA = "0x182D680F0")]
protected InvalidTimeZoneException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidTimeZoneException" /> class with a system-supplied message.</summary>
// Token: 0x06000A4B RID: 2635 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A4B")]
[Address(RVA = "0x2D68090", Offset = "0x2D67090", VA = "0x182D68090")]
public InvalidTimeZoneException()
{
}
}
}