| com.triactive.jdo.store.SchemaValidationException
All known Subclasses: com.triactive.jdo.store.WrongScaleException, com.triactive.jdo.store.WrongPrimaryKeyException, com.triactive.jdo.store.WrongPrecisionException, com.triactive.jdo.store.MissingIndicesException, com.triactive.jdo.store.IsNotNullableException, com.triactive.jdo.store.MissingColumnException, com.triactive.jdo.store.MissingForeignKeysException, com.triactive.jdo.store.IncompatibleDataTypeException, com.triactive.jdo.store.UnexpectedColumnException, com.triactive.jdo.store.MissingSchemaTableEntryException, com.triactive.jdo.store.NotAViewException, com.triactive.jdo.store.MissingTableException, com.triactive.jdo.store.IsNullableException, com.triactive.jdo.store.NotABaseTableException,
SchemaValidationException | public class SchemaValidationException extends JDODataStoreException (Code) | | A SchemaValidationException is thrown if a mismatch is discovered
between what the JDO runtime thinks the schema should look like and what it
actually looks like.
author: Mike Martin version: $Revision: 1.4 $ See Also: Table |
Method Summary | |
protected static String | toString(Collection objs) Converts the given collection of objects to string as a comma-separated
list. |
SchemaValidationException | public SchemaValidationException(String msg)(Code) | | Constructs a schema validation exception with the specified detail
message.
Parameters: msg - the detail message |
SchemaValidationException | public SchemaValidationException(String msg, Exception nested)(Code) | | Constructs a schema validation exception with the specified detail
message and nested exception.
Parameters: msg - the detail message Parameters: nested - the nested exception(s). |
toString | protected static String toString(Collection objs)(Code) | | Converts the given collection of objects to string as a comma-separated
list. If the list is empty the string "<none>" is returned.
A string containing each object in the given collection,converted toString() and separated by commas. |
|
|