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

org.openpnp.capture.CaptureException Maven / Gradle / Ivy

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