All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.exist.launcher.ServiceManagerException Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
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