Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TransactionPromotionException.cs
Go to the documentation of this file.
3
4namespace System.Transactions;
5
7[TypeForwardedFrom("System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : this(System.SR.PromotionFailed)
12 {
13 }
14
15 public TransactionPromotionException(string? message)
16 : base(message)
17 {
18 }
19
21 : base(message, innerException)
22 {
23 }
24
26 : base(info, context)
27 {
28 }
29}
Definition SR.cs:7
TransactionPromotionException(string? message, Exception? innerException)
TransactionPromotionException(SerializationInfo info, StreamingContext context)