gnu.io.LibLoadException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jrxtx Show documentation
Show all versions of jrxtx Show documentation
jRxTx is a library for Java serial communication.
package gnu.io;
class LibLoadException extends Exception {
public LibLoadException(String message) {
super(message);
}
public LibLoadException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy