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

gnu.io.NativeResourceException Maven / Gradle / Ivy

Go to download

A fork of the RXTX library with a focus on ease of use and embeddability in other libraries.

There is a newer version: 5.2.1
Show newest version
package gnu.io;

public class NativeResourceException extends RuntimeException {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private String message;
	
	public NativeResourceException(String msg) {
		message = msg;
	}
	
	public String toString() {
		return message;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy