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

com.github.sarxos.webcam.WebcamLockException Maven / Gradle / Ivy

Go to download

This library allows you to use your PC webcam, IP or network cameras directly from Java. It's compatible with most operating systems (Windows, Linux, MacOS).

The newest version!
package com.github.sarxos.webcam;

public class WebcamLockException extends WebcamException {

	private static final long serialVersionUID = 1L;

	public WebcamLockException(String message, Throwable cause) {
		super(message, cause);
	}

	public WebcamLockException(String message) {
		super(message);
	}

	public WebcamLockException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy