Home

xl2.odb
Class InvalidObjectException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--xl2.util.NestedException
                          |
                          +--xl2.odb.XL2Exception
                                |
                                +--xl2.odb.InvalidObjectException
All Implemented Interfaces:
java.io.Serializable

public class InvalidObjectException
extends XL2Exception

Thrown when attempting to lock objects whose state may differ from there last committed state. For example, instances that were WRITE locked in a transaction that was aborted. This only happens for previously serialized objects.

See Also:
XL2Transaction.lock(Object,int), Serialized Form

Constructor Summary
InvalidObjectException(java.lang.Object object)
           
 
Method Summary
 java.lang.Object getObject()
          The object in question.
 
Methods inherited from class xl2.util.NestedException
getException, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidObjectException

public InvalidObjectException(java.lang.Object object)
Method Detail

getObject

public java.lang.Object getObject()
The object in question.

Home