Class DataCachePutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.caplin.transformer.module.exceptions.TransformerException
com.caplin.transformer.module.exceptions.DataCachePutException
- All Implemented Interfaces:
Serializable
Thrown when an attempt to put an object into the Transformer fails.
-
Constructor Summary
ConstructorDescriptionDataCachePutException
(String message, int errorCode) Constructs the DataCachePutException with the specified message and error code. -
Method Summary
Modifier and TypeMethodDescriptionint
Gets the error code that the Transformer returned to indicate what the problem was.toString()
Returns a string that describes the exception, including the message that details what happened and the error code.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
DataCachePutException
Constructs the DataCachePutException with the specified message and error code.
- Parameters:
message
- A description of what caused the exception.errorCode
- The error code returned from the Transformer.
-
-
Method Details
-
getErrorCode
public int getErrorCode()Gets the error code that the Transformer returned to indicate what the problem was.
If the error code is -1, then the attempt to Put the object into the Transformer failed.
Any other error codes are unexpected.
- Returns:
- The value of the error code.
-
toString
Returns a string that describes the exception, including the message that details what happened and the error code.
-