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

purejavacomm.PureJavaIllegalStateException Maven / Gradle / Ivy

Go to download

PureJavaComm is an Application Programmin Interface (API) for accessing serial ports from Java. PureJavaComm aims to be a drop-in replacement for Sun's (now Oracle) abandoned JavaComm and an easier to deploy alternative to RXTX.

The newest version!
package purejavacomm;

public class PureJavaIllegalStateException extends IllegalStateException {

	public PureJavaIllegalStateException(String message) {
		super(message);
	}

	public PureJavaIllegalStateException(Exception e) {
		super(e);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy