Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ExecutionEngineException.cs
Go to the documentation of this file.
3
4namespace System;
5
7[Obsolete("ExecutionEngineException previously indicated an unspecified fatal error in the runtime. The runtime no longer raises this exception so this type is obsolete.")]
8[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
10{
12 : base(SR.Arg_ExecutionEngineException)
13 {
14 base.HResult = -2146233082;
15 }
16
17 public ExecutionEngineException(string? message)
18 : base(message)
19 {
20 base.HResult = -2146233082;
21 }
22
24 : base(message, innerException)
25 {
26 base.HResult = -2146233082;
27 }
28
30 : base(info, context)
31 {
32 }
33}
ExecutionEngineException(SerializationInfo info, StreamingContext context)
ExecutionEngineException(string? message, Exception? innerException)
Definition SR.cs:7