
org.exist.start.StartException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exist-start Show documentation
Show all versions of exist-start Show documentation
Startup for eXist-db NoSQL Database Client/Server
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