Files
Dec2017-Script-Dump/System.Core/System/TimeZoneNotFoundException.cs
T
2026-06-04 11:42:34 +02:00

45 lines
2.1 KiB
C#

using System;
using System.Runtime.Serialization;
namespace System
{
/// <summary>The exception that is thrown when a time zone cannot be found.</summary>
// Token: 0x0200005A RID: 90
[Serializable]
public class TimeZoneNotFoundException : Exception
{
/// <summary>Initializes a new instance of the <see cref="T:System.TimeZoneNotFoundException" /> class with a system-supplied message.</summary>
// Token: 0x060004F6 RID: 1270 RVA: 0x00018A60 File Offset: 0x00016C60
public TimeZoneNotFoundException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.TimeZoneNotFoundException" /> class with the specified message string.</summary>
/// <param name="message">A string that describes the exception.</param>
// Token: 0x060004F7 RID: 1271 RVA: 0x00018A68 File Offset: 0x00016C68
public TimeZoneNotFoundException(string message)
: base(message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.TimeZoneNotFoundException" /> 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: 0x060004F8 RID: 1272 RVA: 0x00018A74 File Offset: 0x00016C74
public TimeZoneNotFoundException(string message, Exception e)
: base(message, e)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.TimeZoneNotFoundException" /> 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 null.-or-The <paramref name="context" /> parameter is null.</exception>
// Token: 0x060004F9 RID: 1273 RVA: 0x00018A80 File Offset: 0x00016C80
protected TimeZoneNotFoundException(SerializationInfo info, StreamingContext sc)
: base(info, sc)
{
}
}
}