Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IOException.cs
Go to the documentation of this file.
3
4namespace System.IO;
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
10 public IOException()
11 : base(SR.Arg_IOException)
12 {
13 base.HResult = -2146232800;
14 }
15
16 public IOException(string? message)
17 : base(message)
18 {
19 base.HResult = -2146232800;
20 }
21
22 public IOException(string? message, int hresult)
23 : base(message)
24 {
26 }
27
28 public IOException(string? message, Exception? innerException)
29 : base(message, innerException)
30 {
31 base.HResult = -2146232800;
32 }
33
35 : base(info, context)
36 {
37 }
38}
IOException(string? message)
IOException(string? message, Exception? innerException)
IOException(string? message, int hresult)
IOException(SerializationInfo info, StreamingContext context)
Definition SR.cs:7