Example usage for Java javax.transaction.xa XAException fields, constructors, methods, implement or subclass
The text is from its open source code.
int | XA_RBBASE The inclusive lower bound of the rollback codes. |
int | XA_RBROLLBACK Indicates that the rollback was caused by an unspecified reason. |
int | XA_RBCOMMFAIL Indicates that the rollback was caused by a communication failure. |
int | XA_RBDEADLOCK A deadlock was detected. |
int | XA_RBOTHER The resource manager rolled back the transaction branch for a reason not on this list. |
int | XA_RBPROTO A protocol error occurred in the resource manager. |
int | XA_RBTIMEOUT A transaction branch took too long. |
int | XA_HEURHAZ The transaction branch may have been heuristically completed. |
int | XA_HEURCOM The transaction branch has been heuristically committed. |
int | XA_HEURRB The transaction branch has been heuristically rolled back. |
int | XA_HEURMIX The transaction branch has been heuristically committed and rolled back. |
int | XAER_RMERR A resource manager error has occurred in the transaction branch. |
int | XAER_NOTA The XID is not valid. |
int | XAER_INVAL Invalid arguments were given. |
int | XAER_PROTO Routine was invoked in an inproper context. |
int | XAER_RMFAIL Resource manager is unavailable. |
int | XAER_DUPID The XID already exists. |
XAException() Create an XAException. | |
XAException(String s) Create an XAException with a given string. | |
XAException(int errcode) Create an XAException with a given error code. |
void | addSuppressed(Throwable exception) Appends the specified exception to the exceptions that were suppressed in order to deliver this exception. |
String | getMessage() Returns the detail message string of this throwable. |
Throwable | initCause(Throwable cause) Initializes the cause of this throwable to the specified value. |
void | printStackTrace() Prints this throwable and its backtrace to the standard error stream. |
String | toString() Returns a short description of this throwable. |