javax.slee
Class TransactionRequiredLocalException

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

public class TransactionRequiredLocalException
extends SLEEException

This exception is thrown by the SLEE when an mandatory transactional method is invoked without a valid transaction context.

See Also:
Serialized Form

Constructor Summary
TransactionRequiredLocalException(java.lang.String message)
          Create a TransactionRequiredLocalException with a detail message.
TransactionRequiredLocalException(java.lang.String message, java.lang.Throwable cause)
          Create a TransactionRequiredLocalException 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

TransactionRequiredLocalException

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

TransactionRequiredLocalException

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