Class DataChangedException

  • All Implemented Interfaces:
    java.io.Serializable

    public class DataChangedException
    extends ObjectStoreException
    An Exception that may be thrown by an ObjectStore indicating that a request cannot be serviced because the database has changed since the request was started.
    Author:
    Andrew Varley
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      DataChangedException()
      Constructs an DataChangedException
      DataChangedException​(java.lang.String msg)
      Constructs an DataChangedException with the specified detail message.
      DataChangedException​(java.lang.String msg, java.lang.Throwable t)
      Constructs an DataChangedException with the specified detail message and nested throwable.
      DataChangedException​(java.lang.Throwable t)
      Constructs an DataChangedException with the specified nested throwable.
    • Method Summary

      • 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

      • DataChangedException

        public DataChangedException()
        Constructs an DataChangedException
      • DataChangedException

        public DataChangedException​(java.lang.String msg)
        Constructs an DataChangedException with the specified detail message.
        Parameters:
        msg - the detail message
      • DataChangedException

        public DataChangedException​(java.lang.Throwable t)
        Constructs an DataChangedException with the specified nested throwable.
        Parameters:
        t - the nested throwable
      • DataChangedException

        public DataChangedException​(java.lang.String msg,
                                    java.lang.Throwable t)
        Constructs an DataChangedException with the specified detail message and nested throwable.
        Parameters:
        msg - the detail message
        t - the nested throwable