Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SqlAlreadyFilledException.cs
Go to the documentation of this file.
3
5
7[TypeForwardedFrom("System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : this(SQLResource.AlreadyFilledMessage, null)
12 {
13 }
14
15 public SqlAlreadyFilledException(string? message)
16 : this(message, null)
17 {
18 }
19
20 public SqlAlreadyFilledException(string? message, Exception? e)
21 : base(message, e)
22 {
23 base.HResult = -2146232015;
24 }
25
30}
SqlAlreadyFilledException(SerializationInfo si, StreamingContext sc)