Package oracle.tmm.jta.nonxa
Class NonXAException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.tmm.jta.nonxa.NonXAException
- All Implemented Interfaces:
Serializable
Non XA Exception thrown by OTMM(MicroTx)
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionint
The error code with which to create the SystemException. -
Constructor Summary
ConstructorsConstructorDescriptionCreate an NonXAException.NonXAException
(int errcode) Create an NonXAException with a given error code.Create an NonXAException with a given string.NonXAException
(String reason, Throwable cause) Create an NonXAException with a given reason and re-throwable cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
errorCode
public int errorCodeThe error code with which to create the SystemException.
-
-
Constructor Details
-
NonXAException
public NonXAException()Create an NonXAException. -
NonXAException
Create an NonXAException with a given string.- Parameters:
s
- TheString
object containing the exception message.
-
NonXAException
public NonXAException(int errcode) Create an NonXAException with a given error code.- Parameters:
errcode
- The error code identifying the exception.
-
NonXAException
Create an NonXAException with a given reason and re-throwable cause.- Parameters:
reason
- TheString
object containing the exception message.cause
- The throwable object related to NonXA Exception
-