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