org.exist.launcher.ServiceManagerException 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.launcher;
public class ServiceManagerException extends Exception {
public ServiceManagerException(final String message) {
super(message);
}
public ServiceManagerException(final Throwable cause) {
super(cause);
}
public ServiceManagerException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy