Package Thor.API.Exceptions
Class tcStaleDataUpdateException
java.lang.Object
java.lang.Throwable
java.lang.Exception
Thor.API.Exceptions.tcStaleDataUpdateException
- All Implemented Interfaces:
Serializable
,Cloneable
tcStaleDataUpdateException is thrown if the data you are updating is stale
- Author:
- asmaram
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new tcStaleDataUpdateException object.tcStaleDataUpdateException
(String isMessage) Constructs a new tcStaleDataUpdateException with the specified detail message. -
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.long[]
Returns all the keys that are fledvoid
setFailedKeys
(long[] failedData) Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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.
-
-
Constructor Details
-
tcStaleDataUpdateException
public tcStaleDataUpdateException()Creates a new tcStaleDataUpdateException object. -
tcStaleDataUpdateException
Constructs a new tcStaleDataUpdateException with the specified detail message.- Parameters:
isMessage
- The detailed message. The detailed message is saved for later retrieval by the Throwable.getMessage() method.
-
-
Method Details
-
getFailedKeys
public long[] getFailedKeys()Returns all the keys that are fled- Returns:
-
setFailedKeys
public void setFailedKeys(long[] failedData) - Parameters:
failedData
-
-
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
- if any of the components cannot be cloned
-