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

com.github.sarxos.webcam.WebcamException 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).

There is a newer version: 0.3.12
Show newest version
package com.github.sarxos.webcam;

public class WebcamException extends RuntimeException {

	private static final long serialVersionUID = 4305046981807594375L;

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy