Class ReferentialIntegrityException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ReferentialIntegrityException
    extends DataIntegrityException
    A data integrity exception that indicates an attempt to create stale references. A stale reference is a reference that points to a target object that does not (or no longer) exist.

    Detection of referential integrity violations must be explicitly enabled on the server side because it can be expensive:

        <property name="ensureReferentialIntegrity" value="true"/>
     
    The risk of referential integrity violations can be reduced (but not eliminated) by using local cross reference queries before committing:

    Since:
    4.0
    Author:
    Eike Stepper
    See Also:
    Serialized Form
    No Extend
    This interface is not intended to be extended by clients.
    No Instantiate
    This class is not intended to be instantiated by clients.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<CDOObjectReference> getXRefs()  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ReferentialIntegrityException

        public ReferentialIntegrityException​(java.lang.String msg,
                                             java.util.List<CDOObjectReference> xRefs)