Class UnableToAcquireLockException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.tangosol.coherence.transaction.exception.UnableToAcquireLockException
-
- All Implemented Interfaces:
Serializable
public class UnableToAcquireLockException extends RuntimeException
Indicates that a write operation was unable to acquire a write lock.- Author:
- js 2009.08.01
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnableToAcquireLockException(String sMsg)
Create a UnableToAcquireLockException with a String msg.UnableToAcquireLockException(String sMsg, Throwable t)
Create a UnableToAcquireLockException with a String msg and Throwable cause.UnableToAcquireLockException(Throwable t)
Create a UnableToAcquireLockException with a Throwable cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnableToAcquireLockException
public UnableToAcquireLockException(String sMsg)
Create a UnableToAcquireLockException with a String msg.- Parameters:
sMsg
- the message
-
UnableToAcquireLockException
public UnableToAcquireLockException(Throwable t)
Create a UnableToAcquireLockException with a Throwable cause.- Parameters:
t
- the throwable
-
-