
org.openpnp.capture.CaptureException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpnp-capture-java Show documentation
Show all versions of openpnp-capture-java Show documentation
OpenPnP Capture Java with all binaries included, packaged for Maven.
package org.openpnp.capture;
public class CaptureException extends Exception {
private final int result;
public CaptureException(int result) {
super(OpenPnpCapture.getResultDescription(result));
this.result = result;
}
public int getResult() {
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy