TransactionException Constructor (TransactionException, Boolean)IBM WebSphere™ eXtreme Scale Client for .NET API Specification
IBM WebSphere™ eXtreme Scale Client for .NET Release 8.6.0.0 API Specification

Initializes a new instance of the TransactionException class with a specified exception cause and a special indication of whether the transaction was rolled back as a result of this exception.

Namespace: IBM.WebSphere.Caching
Assembly: Client.Api (in Client.Api.dll) Version: 8.6.0.0
Syntax

Parameters

cause
Type: IBM.WebSphere.Caching TransactionException
Specifies the exception that is the cause of the current exception. A null value is permitted and indicates that the cause is nonexistent or unknown.
rolledBack
Type: System Boolean
Specifies if the transaction was rolled back. A value of true indicates that the transaction was rolled back.
Remarks

The cause and a detailed message of (cause==null ? null : cause.toString()) is used, which typically contains the class and detailed message of cause. This constructor is useful for as a wrapper for other Throwable objects that occur.
See Also