| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException com.db4o.foundation.ChainedRuntimeException com.db4o.ext.Db4oException
All known Subclasses: com.db4o.InvalidPasswordException, com.db4o.ext.OldFormatException, com.db4o.DatabaseFileLockedException, com.db4o.IncompatibleFileFormatException, com.db4o.internal.IllegalComparisonException, com.db4o.ext.ObjectNotStorableException, com.db4o.constraints.ConstraintViolationException, com.db4o.Db4oIOException, com.db4o.ext.InvalidIDException, com.db4o.DatabaseReadOnlyException, com.db4o.ext.BackupInProgressException, com.db4o.config.GlobalOnlyConfigException, com.db4o.DatabaseMaximumSizeReachedException, com.db4o.DatabaseClosedException, com.db4o.internal.ReflectException,
Db4oException | public class Db4oException extends ChainedRuntimeException (Code) | | db4o exception wrapper: Exceptions occurring during internal processing
will be proliferated to the client calling code encapsulated in an exception
of this type. The original exception, if any, is available through
Db4oException#getCause().
|
Db4oException | public Db4oException()(Code) | | Simple constructor
|
Db4oException | public Db4oException(String msg)(Code) | | Constructor with an exception message specified
Parameters: msg - exception message |
Db4oException | public Db4oException(Throwable cause)(Code) | | Constructor with an exception cause specified
Parameters: cause - exception cause |
Db4oException | public Db4oException(int messageConstant)(Code) | | Constructor with an exception message selected
from the internal message collection.
Parameters: messageConstant - internal db4o message number |
Db4oException | public Db4oException(String msg, Throwable cause)(Code) | | Constructor with an exception message and cause specified
Parameters: msg - exception message Parameters: cause - exception cause |
|
|