Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SEHException.cs
Go to the documentation of this file.
3
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
10 public SEHException()
11 {
12 base.HResult = -2147467259;
13 }
14
15 public SEHException(string? message)
16 : base(message)
17 {
18 base.HResult = -2147467259;
19 }
20
21 public SEHException(string? message, Exception? inner)
22 : base(message, inner)
23 {
24 base.HResult = -2147467259;
25 }
26
28 : base(info, context)
29 {
30 }
31
32 public virtual bool CanResume()
33 {
34 return false;
35 }
36}
SEHException(string? message, Exception? inner)
SEHException(SerializationInfo info, StreamingContext context)