org.exist.util.DatabaseConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exist-core Show documentation
Show all versions of exist-core Show documentation
eXist-db NoSQL Database Core
package org.exist.util;
public class DatabaseConfigurationException extends Exception {
private static final long serialVersionUID = 5583749487314182182L;
public DatabaseConfigurationException() {
super();
}
public DatabaseConfigurationException(String message) {
super(message);
}
public DatabaseConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy