Package org.intermine.objectstore
Class DataChangedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.intermine.objectstore.ObjectStoreException
-
- org.intermine.objectstore.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 DataChangedExceptionDataChangedException(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.
-
-
-
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 messaget- the nested throwable
-
-