Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
RowNotInTableException.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_DefaultRowNotInTableException)
17 {
18 base.HResult = -2146232024;
19 }
20
21 public RowNotInTableException(string? s)
22 : base(s)
23 {
24 base.HResult = -2146232024;
25 }
26
28 : base(message, innerException)
29 {
30 base.HResult = -2146232024;
31 }
32}
RowNotInTableException(SerializationInfo info, StreamingContext context)
RowNotInTableException(string? message, Exception? innerException)
Definition SR.cs:7