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

gnu.io.CommPortException Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
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