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