sk.upjs.zirro.fpm10sensor.FingerprintSensorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fpm10-fingerprint-sensor Show documentation
Show all versions of fpm10-fingerprint-sensor Show documentation
Java library for FPM10 fingerprint sensors.
The newest version!
package sk.upjs.zirro.fpm10sensor;
public class FingerprintSensorException extends RuntimeException {
private static final long serialVersionUID = -4901294379612450370L;
public FingerprintSensorException() {
super();
}
public FingerprintSensorException(String message, Throwable cause) {
super(message, cause);
}
public FingerprintSensorException(String message) {
super(message);
}
public FingerprintSensorException(Throwable cause) {
super(cause);
}
}