gnu.io.CommPortException 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;
import java.io.IOException;
/**
* Thrown to indicate that there is an error creating or accessing a COM.
*/
public class CommPortException extends IOException {
public CommPortException(String message) {
super(message);
}
public CommPortException(String message, Throwable cause) {
super(message);
super.initCause(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy