Package org.firebirdsql.jaybird.xca
Class FBXAException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.transaction.xa.XAException
-
- org.firebirdsql.jaybird.xca.FBXAException
-
- All Implemented Interfaces:
java.io.Serializable
public class FBXAException extends javax.transaction.xa.XAException
Convenience exception that adds constructor taking message and error code together.- Author:
- Roman Rokytskyy
- See Also:
- Serialized Form
-
-
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
Constructors Constructor Description FBXAException()
Deprecated.will be removed in Jaybird 6, use one of the other constructorsFBXAException(int errorCode)
Create a new instance ofFBXAException
based around a specific error code.FBXAException(int errorCode, java.lang.Exception reason)
Create a new instance ofFBXAException
wrapped around an underlying exception.FBXAException(java.lang.String msg)
Create a new instance ofFBXAException
with a given message.FBXAException(java.lang.String msg, int errorCode)
Create a new instance ofFBXAException
based around a message and specific error code.FBXAException(java.lang.String msg, int errorCode, java.lang.Exception reason)
Create a new instance ofFBXAException
based around a message and with an underlying exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessage()
Get message of this exception.void
printStackTrace()
Print a stack trace for this exception toSTDERR
.void
printStackTrace(java.io.PrintStream s)
Print a stack trace for this exception with a givenPrintStream
.void
printStackTrace(java.io.PrintWriter s)
Print a stack trace for this exception with a givenPrintWriter
.
-
-
-
Constructor Detail
-
FBXAException
@Deprecated public FBXAException()
Deprecated.will be removed in Jaybird 6, use one of the other constructors
-
FBXAException
public FBXAException(java.lang.String msg)
Create a new instance ofFBXAException
with a given message.- Parameters:
msg
- The string message for this exception
-
FBXAException
public FBXAException(int errorCode)
Create a new instance ofFBXAException
based around a specific error code.- Parameters:
errorCode
- The error code for this exception
-
FBXAException
public FBXAException(java.lang.String msg, int errorCode)
Create a new instance ofFBXAException
based around a message and specific error code.- Parameters:
msg
- The string message for this exceptionerrorCode
- The error code for this exception
-
FBXAException
public FBXAException(int errorCode, java.lang.Exception reason)
Create a new instance ofFBXAException
wrapped around an underlying exception.- Parameters:
errorCode
- The error code for this exceptionreason
- The underlying exception
-
FBXAException
public FBXAException(java.lang.String msg, int errorCode, java.lang.Exception reason)
Create a new instance ofFBXAException
based 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 Detail
-
getMessage
public java.lang.String getMessage()
Get message of this exception.- Overrides:
getMessage
in classjava.lang.Throwable
- Returns:
- combined message of this exception and original exception.
-
printStackTrace
public void printStackTrace()
Print a stack trace for this exception toSTDERR
.- Overrides:
printStackTrace
in classjava.lang.Throwable
-
printStackTrace
public void printStackTrace(java.io.PrintStream s)
Print a stack trace for this exception with a givenPrintStream
.- Overrides:
printStackTrace
in classjava.lang.Throwable
- Parameters:
s
- ThePrintStream
to which the stack trace will be written
-
printStackTrace
public void printStackTrace(java.io.PrintWriter s)
Print a stack trace for this exception with a givenPrintWriter
.- Overrides:
printStackTrace
in classjava.lang.Throwable
- Parameters:
s
- ThePrintWriter
to which the stack trace will be written
-
-