Package Thor.API.Exceptions
Class tcAPIException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.thortech.xl.util.ThorException
Thor.API.Exceptions.tcAPIException
- All Implemented Interfaces:
Serializable
,Cloneable
This is generic exception raised while using API operations.
For example if there is a problem while retrieving the information from
the database this exception is raised.
- Version:
- $Revision: /main/17 $
- Author:
- evandana
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new tcAPIException object.tcAPIException
(String isMessage) Constructs a new tcAPIException with the specified detail message.tcAPIException
(String errorCode, String isMessage) Constructs a new tcAPIException with the specified error code and detail message.tcAPIException
(String isMessage, Throwable ex) -
Method Summary
Modifier and TypeMethodDescriptionclone()
Creates and returns a copy of this object.The method clone performs a specific cloning operation, if the class of this object does not implement the interface Cloneable, then a CloneNotSupportedException is thrown.Returns the error code associated with API exceptionReturns the error message associated with API exceptionReturns the object that needed to be returned by the API when the API exception occurred.Returns the Severity of error message associated with API exceptionvoid
void
SetErrorCode
(String code) Method to set the Error code on API Exceptionvoid
SetMessage
(String message) Method to set the Error message on API Exceptionvoid
setReturnValue
(Object retval) Stores the return value that the API intended to send back when a API exception occurred by the failing of some of the transactionsvoid
setSeverity
(String severity) Method to set the Severity of Error message on API ExceptionMethods inherited from class com.thortech.xl.util.ThorException
getOriginalCause, setCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
isMessage
The detailed message. The detailed message is saved for later retrieval by the Throwable.getMessage() method. -
isSeverity
-
-
Constructor Details
-
tcAPIException
public tcAPIException()Creates a new tcAPIException object. -
tcAPIException
Constructs a new tcAPIException with the specified detail message.- Parameters:
isMessage
- the detailed message. The detailed message is saved for later retrieval by the Throwable.getMessage() method.
-
tcAPIException
Constructs a new tcAPIException with the specified error code and detail message.- Parameters:
errorCode
- the error codeisMessage
- the detailed message. The detailed message is saved for later retrieval by the Throwable.getMessage() method.
-
tcAPIException
-
-
Method Details
-
setReturnValue
Stores the return value that the API intended to send back when a API exception occurred by the failing of some of the transactions- Parameters:
retval
- the object that needs to be returned- Since:
- 8.0
-
getReturnValue
Returns the object that needed to be returned by the API when the API exception occurred.- Returns:
- an Object that need to be casted depending on the return value of the API that caused the API exception to happen
- Since:
- 8.0
-
clone
Creates and returns a copy of this object.The method clone performs a specific cloning operation, if the class of this object does not implement the interface Cloneable, then a CloneNotSupportedException is thrown.- Returns:
- java.lang.Object
- Throws:
Error
- Error if any of the components cannot be cloned
-
SetErrorCode
Method to set the Error code on API Exception- Parameters:
code
- , error code to be set
-
getErrorCode
Returns the error code associated with API exception- Returns:
- the error code associated with the exception
-
SetMessage
Method to set the Error message on API Exception- Parameters:
message
- , error message to be set
-
getMessage
Returns the error message associated with API exception- Overrides:
getMessage
in classThrowable
- Returns:
- the error message associated with the exception
-
setSeverity
Method to set the Severity of Error message on API Exception- Parameters:
severity
- , severity of error message to be set- Since:
- 9.1
-
getSeverity
Returns the Severity of error message associated with API exception- Returns:
- the severity of error message associated with the exception
- Since:
- 9.1
-
getAction
-
setAction
-