Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TargetException.cs
Go to the documentation of this file.
3
4namespace System.Reflection;
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : this(null)
12 {
13 }
14
15 public TargetException(string? message)
16 : this(message, null)
17 {
18 }
19
20 public TargetException(string? message, Exception? inner)
21 : base(message, inner)
22 {
23 base.HResult = -2146232829;
24 }
25
27 : base(info, context)
28 {
29 }
30}
TargetException(string? message, Exception? inner)
TargetException(SerializationInfo info, StreamingContext context)