Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TimeZoneNotFoundException.cs
Go to the documentation of this file.
3
4namespace System;
5
7[TypeForwardedFrom("System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 {
12 }
13
14 public TimeZoneNotFoundException(string? message)
15 : base(message)
16 {
17 }
18
20 : base(message, innerException)
21 {
22 }
23
25 : base(info, context)
26 {
27 }
28}
TimeZoneNotFoundException(SerializationInfo info, StreamingContext context)
TimeZoneNotFoundException(string? message, Exception? innerException)