Package org.intermine.objectstore
Class ObjectStoreException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.intermine.objectstore.ObjectStoreException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
BagNotFound,CompletelyFalseException,DataChangedException,ObjectStoreLimitReachedException,ObjectStoreQueryDurationException
public class ObjectStoreException extends java.lang.ExceptionAn Exception that may be thrown by an ObjectStore indicating a fatal error.- Author:
- Andrew Varley
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ObjectStoreException()Constructs an ObjectStoreExceptionObjectStoreException(java.lang.String msg)Constructs an ObjectStoreException with the specified detail message.ObjectStoreException(java.lang.String msg, java.lang.Throwable t)Constructs an ObjectStoreException with the specified detail message and nested throwable.ObjectStoreException(java.lang.Throwable t)Constructs an ObjectStoreException with the specified nested throwable.
-
-
-
Constructor Detail
-
ObjectStoreException
public ObjectStoreException()
Constructs an ObjectStoreException
-
ObjectStoreException
public ObjectStoreException(java.lang.String msg)
Constructs an ObjectStoreException with the specified detail message.- Parameters:
msg- the detail message
-
ObjectStoreException
public ObjectStoreException(java.lang.Throwable t)
Constructs an ObjectStoreException with the specified nested throwable.- Parameters:
t- the nested throwable
-
ObjectStoreException
public ObjectStoreException(java.lang.String msg, java.lang.Throwable t)Constructs an ObjectStoreException with the specified detail message and nested throwable.- Parameters:
msg- the detail messaget- the nested throwable
-
-