Package org.firebirdsql.jca
Class FBXAException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.transaction.xa.XAException
org.firebirdsql.jca.FBXAException
- All Implemented Interfaces:
Serializable
Convenience exception that adds constructor taking message and error code
together.
- Author:
- Roman Rokytskyy
- See Also:
-
Field Summary
Fields inherited from class javax.transaction.xa.XAException
errorCode, XA_HEURCOM, XA_HEURHAZ, XA_HEURMIX, XA_HEURRB, XA_NOMIGRATE, XA_RBBASE, XA_RBCOMMFAIL, XA_RBDEADLOCK, XA_RBEND, XA_RBINTEGRITY, XA_RBOTHER, XA_RBPROTO, XA_RBROLLBACK, XA_RBTIMEOUT, XA_RBTRANSIENT, XA_RDONLY, XA_RETRY, XAER_ASYNC, XAER_DUPID, XAER_INVAL, XAER_NOTA, XAER_OUTSIDE, XAER_PROTO, XAER_RMERR, XAER_RMFAIL -
Constructor Summary
ConstructorsConstructorDescriptionFBXAException(int errorCode) Create a new instance ofFBXAExceptionbased around a specific error code.FBXAException(int errorCode, Exception reason) Create a new instance ofFBXAExceptionwrapped around an underlying exception.FBXAException(String msg) Create a new instance ofFBXAExceptionwith a given message.FBXAException(String msg, int errorCode) Create a new instance ofFBXAExceptionbased around a message and specific error code.FBXAException(String msg, int errorCode, Exception reason) Create a new instance ofFBXAExceptionbased around a message and with an underlying exception. -
Method Summary
Modifier and TypeMethodDescriptionGet message of this exception.voidPrint a stack trace for this exception toSTDERR.voidPrint a stack trace for this exception with a givenPrintStream.voidPrint a stack trace for this exception with a givenPrintWriter.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
FBXAException
public FBXAException() -
FBXAException
Create a new instance ofFBXAExceptionwith a given message.- Parameters:
msg- The string message for this exception
-
FBXAException
public FBXAException(int errorCode) Create a new instance ofFBXAExceptionbased around a specific error code.- Parameters:
errorCode- The error code for this exception
-
FBXAException
Create a new instance ofFBXAExceptionbased around a message and specific error code.- Parameters:
msg- The string message for this exceptionerrorCode- The error code for this exception
-
FBXAException
Create a new instance ofFBXAExceptionwrapped around an underlying exception.- Parameters:
errorCode- The error code for this exceptionreason- The underlying exception
-
FBXAException
Create a new instance ofFBXAExceptionbased around a message and with an underlying exception.- Parameters:
msg- The string message for this exceptionerrorCode- The error code for this exceptionreason- The underlying exception
-
-
Method Details
-
getMessage
Get message of this exception.- Overrides:
getMessagein classThrowable- Returns:
- combined message of this exception and original exception.
-
printStackTrace
public void printStackTrace()Print a stack trace for this exception toSTDERR.- Overrides:
printStackTracein classThrowable
-
printStackTrace
Print a stack trace for this exception with a givenPrintStream.- Overrides:
printStackTracein classThrowable- Parameters:
s- ThePrintStreamto which the stack trace will be written
-
printStackTrace
Print a stack trace for this exception with a givenPrintWriter.- Overrides:
printStackTracein classThrowable- Parameters:
s- ThePrintWriterto which the stack trace will be written
-