public class LocalTransactionException extends ResourceException
LocalTransactionException represents various 
 error conditions related to the local transaction management contract. 
 The Java Transaction API specification specifies the 
 javax.transaction.xa.XAException class for exceptions 
 related to XAResource based transaction management contract. 
  
 The LocalTransactionException is used for the local 
 transaction management contract to indicate the following common 
 error conditions:
  
commit method on 
      LocalTransaction object without an active
      local transaction is an error condition.
  commit method call on the LocalTransaction 
      object.
  ManagedConnection that is already associated with
      an active local transaction.
  | Constructor and Description | 
|---|
| LocalTransactionException()Constructs a new instance with null as its detail message. | 
| LocalTransactionException(String message)Constructs a new instance with the specified detail message. | 
| LocalTransactionException(String message,
                         String errorCode)Constructs a new throwable with the specified detail message and
 an error code. | 
| LocalTransactionException(String message,
                         Throwable cause)Constructs a new throwable with the specified detail message and cause. | 
| LocalTransactionException(Throwable cause)Constructs a new throwable with the specified cause. | 
getErrorCode, getLinkedException, getMessage, setErrorCode, setLinkedExceptionaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic LocalTransactionException()
public LocalTransactionException(String message)
message - the detail message.public LocalTransactionException(Throwable cause)
cause - a chained exception of type Throwable.public LocalTransactionException(String message, Throwable cause)
message - the detail message.cause - a chained exception of type Throwable.Copyright © 1996-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.