Package org.intermine.api.bag
Class ClassKeysNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.intermine.api.bag.ClassKeysNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class ClassKeysNotFoundException extends java.lang.Exception
Exception thrown when given attempting to create a bag for a type that isn't in the model, this can happen when reading bags from a userprofile database and the data model has changed. types- Author:
- Richard Smith
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClassKeysNotFoundException(java.lang.String msg)
Constructs an IncompatibleBagTypesException with the specified detail message.ClassKeysNotFoundException(java.lang.String msg, java.lang.Throwable t)
Constructs an IncompatibleBagTypesException with the specified detail message and nested throwable.ClassKeysNotFoundException(java.lang.Throwable t)
Constructs an IncompatibleBagTypesException with the specified nested throwable.
-
-
-
Constructor Detail
-
ClassKeysNotFoundException
public ClassKeysNotFoundException(java.lang.String msg)
Constructs an IncompatibleBagTypesException with the specified detail message.- Parameters:
msg
- the detail message
-
ClassKeysNotFoundException
public ClassKeysNotFoundException(java.lang.Throwable t)
Constructs an IncompatibleBagTypesException with the specified nested throwable.- Parameters:
t
- the nested throwable
-
ClassKeysNotFoundException
public ClassKeysNotFoundException(java.lang.String msg, java.lang.Throwable t)
Constructs an IncompatibleBagTypesException with the specified detail message and nested throwable.- Parameters:
msg
- the detail messaget
- the nested throwable
-
-