Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ThreadInterruptedException.cs
Go to the documentation of this file.
3
4namespace System.Threading;
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
15
16 public ThreadInterruptedException(string? message)
17 : base(message)
18 {
19 base.HResult = -2146233063;
20 }
21
23 : base(message, innerException)
24 {
25 base.HResult = -2146233063;
26 }
27
29 : base(info, context)
30 {
31 }
32}
static string GetMessageFromNativeResources(ExceptionMessageKind kind)
Definition Exception.cs:279
ThreadInterruptedException(SerializationInfo info, StreamingContext context)
ThreadInterruptedException(string? message, Exception? innerException)