com.softwareag.centrasite.appl.framework.persistence
Class LockNotAvailableException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.softwareag.centrasite.appl.framework.persistence.JBMException
                  extended by com.softwareag.centrasite.appl.framework.persistence.LockNotAvailableException
All Implemented Interfaces:
java.io.Serializable

public class LockNotAvailableException
extends JBMException

Exception thrown when trying to modify a registry bean which is being modified in the moment by another client.

See Also:
Serialized Form

Constructor Summary
LockNotAvailableException(java.lang.String message)
          Creates a new instance with the given detail message and no cause.
LockNotAvailableException(java.lang.String message, java.lang.Throwable cause)
          Creates a new instance with the given detail message and cause.
LockNotAvailableException(java.lang.Throwable cause)
          Creates a new instance with the given cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LockNotAvailableException

public LockNotAvailableException(java.lang.String message,
                                 java.lang.Throwable cause)
Creates a new instance with the given detail message and cause.

Parameters:
message - The detail message.
cause - The cause of the exception.

LockNotAvailableException

public LockNotAvailableException(java.lang.String message)
Creates a new instance with the given detail message and no cause.

Parameters:
message - The detail message.

LockNotAvailableException

public LockNotAvailableException(java.lang.Throwable cause)
Creates a new instance with the given cause. The detail message is obtained by invoking Throwable.getMessage() on the cause.

Parameters:
cause - The cause of the exception.