Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AsnContentException.cs
Go to the documentation of this file.
2
3namespace System.Formats.Asn1;
4
7{
9 : base(System.SR.ContentException_DefaultMessage)
10 {
11 }
12
13 public AsnContentException(string? message)
14 : base(message ?? System.SR.ContentException_DefaultMessage)
15 {
16 }
17
18 public AsnContentException(string? message, Exception? inner)
19 : base(message ?? System.SR.ContentException_DefaultMessage, inner)
20 {
21 }
22
24 : base(info, context)
25 {
26 }
27}
AsnContentException(string? message, Exception? inner)
AsnContentException(SerializationInfo info, StreamingContext context)
Definition SR.cs:7