//
// TransactionManagerCommunicationException.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// (C)2005 Novell Inc,
//
#if NET_2_0
using System.Runtime.Serialization;
namespace System.Transactions{
[Serializable]
public class TransactionManagerCommunicationException : TransactionException
{
protected TransactionManagerCommunicationException ()
{
}
public TransactionManagerCommunicationException (string message)
: base (message)
{
}
public TransactionManagerCommunicationException (string message, Exception innerException)
: base (message, innerException)
{
}
protected TransactionManagerCommunicationException (SerializationInfo info,
StreamingContext context)
: base (info, context)
{
}
}
}
#endif
|