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

purejavacomm.PureJavaIllegalStateException Maven / Gradle / Ivy

Go to download

FiloFirmata is a client library for the Firmata protocol used with hardware project boards.

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