5586c61ea6
Former-commit-id: 1fce58ff6397a8cf9d2fca6564b434613689c418
39 lines
744 B
C#
39 lines
744 B
C#
//
|
|
// TransactionManagerCommunicationException.cs
|
|
//
|
|
// Author:
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
|
//
|
|
// (C)2005 Novell Inc,
|
|
//
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace System.Transactions
|
|
{
|
|
[Serializable]
|
|
public class TransactionManagerCommunicationException : TransactionException
|
|
{
|
|
public 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)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|