Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AmbiguousImplementationException.cs
Go to the documentation of this file.
3
4namespace System.Runtime;
5
7[TypeForwardedFrom("System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
9{
11 : base(SR.AmbiguousImplementationException_NullMessage)
12 {
13 base.HResult = -2146234262;
14 }
15
16 public AmbiguousImplementationException(string? message)
17 : base(message)
18 {
19 base.HResult = -2146234262;
20 }
21
23 : base(message, innerException)
24 {
25 base.HResult = -2146234262;
26 }
27
32}
AmbiguousImplementationException(string? message, Exception? innerException)
AmbiguousImplementationException(SerializationInfo info, StreamingContext context)
Definition SR.cs:7