gnu.io.NativeResourceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nrjavaserial Show documentation
Show all versions of nrjavaserial Show documentation
A fork of the RXTX library with a focus on ease of use and embeddability in other libraries.
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;
}
}