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

org.exist.start.StartException Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package org.exist.start;

public class StartException extends Exception {
    public int getErrorCode() {
        return errorCode;
    }

    private final int errorCode;

    public StartException(final int errorCode) {
        this.errorCode = errorCode;
    }

    @Override
    public String getMessage() {
        return "Error code: " + getErrorCode();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy