Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CheckoutException.cs
Go to the documentation of this file.
4
6
8[TypeForwardedFrom("System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
10{
11 public static readonly CheckoutException Canceled = new CheckoutException(System.SR.CHECKOUTCanceled, -2147467260);
12
14 {
15 }
16
17 public CheckoutException(string? message)
18 : base(message)
19 {
20 }
21
22 public CheckoutException(string? message, int errorCode)
23 : base(message, errorCode)
24 {
25 }
26
28 : base(info, context)
29 {
30 }
31
32 public CheckoutException(string? message, Exception? innerException)
33 : base(message, innerException)
34 {
35 }
36}
static readonly CheckoutException Canceled
CheckoutException(string? message, Exception? innerException)
CheckoutException(SerializationInfo info, StreamingContext context)
CheckoutException(string? message, int errorCode)
static string CHECKOUTCanceled
Definition SR.cs:126
Definition SR.cs:7