9 references to TransactionException
System.Transactions.Local (9)
System\Transactions\TransactionException.cs (9)
102return new TransactionException(SR.Format(SR.DistributedTxIDInTransactionException, message, distributedTxId)); 104return new TransactionException(message); 176public TransactionAbortedException() : base(SR.TransactionAborted) 184public TransactionAbortedException(string? message) : base(message ?? SR.TransactionAborted) 254public TransactionInDoubtException() : base(SR.TransactionIndoubt) 262public TransactionInDoubtException(string? message) : base(message ?? SR.TransactionIndoubt) 313public TransactionManagerCommunicationException() : base(SR.TransactionManagerCommunicationException) 321public TransactionManagerCommunicationException(string? message) : base(message ?? SR.TransactionManagerCommunicationException) 364public TransactionPromotionException(string? message) : base(message ?? SR.PromotionFailed)