javax.slee
Class TransactionRolledbackLocalException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--javax.slee.SLEEException
                          |
                          +--javax.slee.TransactionRolledbackLocalException
All Implemented Interfaces:
java.io.Serializable

public class TransactionRolledbackLocalException
extends SLEEException

This exception is thrown by the SLEE when a method invoked on an SbbLocalObject throws an unchecked exception, or when a method invoked on a required-transactional facility is invoked without a transaction context and the newly created transaction fails to commit.

See Also:
Serialized Form

Constructor Summary
TransactionRolledbackLocalException(java.lang.String message)
          Create a TransactionRolledbackLocalException with a detail message.
TransactionRolledbackLocalException(java.lang.String message, java.lang.Throwable cause)
          Create a TransactionRolledbackLocalException with a detail message and cause.
 
Methods inherited from class javax.slee.SLEEException
getCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TransactionRolledbackLocalException

public TransactionRolledbackLocalException(java.lang.String message)
Create a TransactionRolledbackLocalException with a detail message.
Parameters:
message - the detail message.

TransactionRolledbackLocalException

public TransactionRolledbackLocalException(java.lang.String message,
                                           java.lang.Throwable cause)
Create a TransactionRolledbackLocalException with a detail message and cause.
Parameters:
message - the detail message.
cause - the reason this exception was thrown.