Class LockingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.alachisoft.ncache.runtime.exceptions.CacheException
-
- com.alachisoft.ncache.runtime.exceptions.LockingException
-
- All Implemented Interfaces:
java.io.Serializable
public class LockingException extends CacheException
LockingException is thrown on Insert/Remove operation if the item is locked and incorrect Lockid is specified.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LockingException()Default constructor.LockingException(java.lang.String message)Overloaded constructor, takes the reason as parameter.LockingException(java.lang.String message, java.lang.Throwable cause)Overloaded constructorLockingException(java.lang.Throwable cause)Overloaded constructor
-
Method Summary
-
Methods inherited from class com.alachisoft.ncache.runtime.exceptions.CacheException
getErrorCode, printStackTrace, setErrorCode
-
-
-
-
Constructor Detail
-
LockingException
public LockingException(java.lang.Throwable cause)
Overloaded constructor- Parameters:
cause- cause
-
LockingException
public LockingException(java.lang.String message, java.lang.Throwable cause)Overloaded constructor- Parameters:
message- detail messagecause- cause
-
LockingException
public LockingException(java.lang.String message)
Overloaded constructor, takes the reason as parameter.- Parameters:
message- detail message
-
LockingException
public LockingException()
Default constructor.
-
-