Class TooManyIndicesException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.datanucleus.exceptions.NucleusException
org.datanucleus.exceptions.NucleusDataStoreException
org.datanucleus.store.rdbms.exceptions.TooManyIndicesException
- All Implemented Interfaces:
Serializable
public class TooManyIndicesException
extends org.datanucleus.exceptions.NucleusDataStoreException
A TooManyIndicesException is thrown when trying to add an index
to a table and the table already has the maximum allowed number of indices.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTooManyIndicesException
(DatastoreAdapter dba, String tableName) Constructs a too-many-indices exception. -
Method Summary
Methods inherited from class org.datanucleus.exceptions.NucleusException
getCause, getFailedObject, getNestedExceptions, isFatal, printStackTrace, printStackTrace, printStackTrace, setFatal, setNestedException
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
TooManyIndicesException
Constructs a too-many-indices exception.- Parameters:
dba
- the database adaptertableName
- Name of the table with too many indices
-