Implement mono_gc_alloc_fixed on Boehm to be uncollectable. This matches SGen behavio...
[mono.git] / mcs / class / System.Transactions / System.Transactions / TransactionInDoubtException.cs
1 //
2 // TransactionInDoubtException.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // (C)2005 Novell Inc,
8 //
9
10 using System.Runtime.Serialization;
11
12 namespace System.Transactions
13 {
14         [Serializable]
15         public class TransactionInDoubtException : TransactionException
16         {
17                 protected TransactionInDoubtException ()
18                 {
19                 }
20
21                 public TransactionInDoubtException (string message)
22                         : base (message)
23                 {
24                 }
25
26                 public TransactionInDoubtException (string message, Exception innerException)
27                         : base (message, innerException)
28                 {
29                 }
30
31                 protected TransactionInDoubtException (SerializationInfo info,
32                         StreamingContext context)
33                         : base (info, context)
34                 {
35                 }
36         }
37 }
38