Package acdp.exceptions
Class MaximumException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
acdp.exceptions.ACDPException
acdp.exceptions.MaximumException
- All Implemented Interfaces:
Serializable
Thrown if one of the maximum values specified in the
nobsRowRef
,
nobsOutrowPtr
and nobsRefCount
fields of the table layout is
violated.
Note that if these fields are all set equal to their maximum value of 8 then it is very unlikely that this exception will ever be thrown. However, setting all these fields equal to 8 almost always leads to an unnecessarily large database.
- Author:
- Beat Hörmann
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMaximumException
(acdp.internal.Table_ table, String message) Constructs this type of exception with a detailed message composed from the specified table and message. -
Method Summary
Methods inherited from class acdp.exceptions.ACDPException
compose, prefix, prefix, prefix, prefix, prefix, prefix, prefix
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MaximumException
Constructs this type of exception with a detailed message composed from the specified table and message.- Parameters:
table
- The table.message
- The message.
-