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

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.ObjectOutdatedException
All Implemented Interfaces:
java.io.Serializable

public class ObjectOutdatedException
extends JBMException

Exception thrown when trying to modify an outdated registry bean. This means a registry bean which has been read from the registry and modified afterwards by another client.

See Also:
Serialized Form

Constructor Summary
ObjectOutdatedException(java.lang.String message)
          Creates a new instance with the given detail message and no cause.
ObjectOutdatedException(java.lang.String message, java.lang.Throwable cause)
          Creates a new instance with the given detail message and cause.
ObjectOutdatedException(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

ObjectOutdatedException

public ObjectOutdatedException(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.

ObjectOutdatedException

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

Parameters:
message - The detail message.

ObjectOutdatedException

public ObjectOutdatedException(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.