Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DataException.cs
Go to the documentation of this file.
3
4namespace System.Data;
5
7[TypeForwardedFrom("System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : base(info, context)
12 {
13 }
14
16 : base(System.SR.DataSet_DefaultDataException)
17 {
18 base.HResult = -2146232032;
19 }
20
21 public DataException(string? s)
22 : base(s)
23 {
24 base.HResult = -2146232032;
25 }
26
29 {
30 }
31}
DataException(SerializationInfo info, StreamingContext context)
DataException(string? s, Exception? innerException)
Definition SR.cs:7