edu.harvard.hul.ois.jhove.ExitCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jhove-apps Show documentation
Show all versions of jhove-apps Show documentation
Classes and fat JAR packaging for CLI and GUI app.
The newest version!
package edu.harvard.hul.ois.jhove;
/**
* The set of possible exit codes returned by JHOVE applications.
*/
public enum ExitCode {
/** General error. */
ERROR(-1),
/** Incompatible Java VM. */
INCOMPATIBLE_VM(-2);
private final int returnCode;
ExitCode(int returnCode) {
this.returnCode = returnCode;
}
public int getReturnCode() {
return returnCode;
}
}