
org.nakedobjects.plugins.berkeley.BerkeleyObjectStoreException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of berkeley-persistor Show documentation
Show all versions of berkeley-persistor Show documentation
Provides file based persistence for a standalone application
The newest version!
package org.nakedobjects.plugins.berkeley;
import org.nakedobjects.metamodel.commons.exceptions.NakedObjectException;
public class BerkeleyObjectStoreException extends NakedObjectException {
private static final long serialVersionUID = 1L;
public BerkeleyObjectStoreException() {
super();
}
public BerkeleyObjectStoreException(String messageFormat, Object... args) {
super(messageFormat, args);
}
public BerkeleyObjectStoreException(String message, Throwable cause) {
super(message, cause);
}
public BerkeleyObjectStoreException(String message) {
super(message);
}
public BerkeleyObjectStoreException(Throwable cause) {
super(cause);
}
}
// Copyright (c) Naked Objects Group Ltd.
© 2015 - 2025 Weber Informatics LLC | Privacy Policy