com.jamierf.rxtx.UnsupportedArchitectureException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxtx Show documentation
Show all versions of rxtx Show documentation
RXTX native loader, pulls in the gnu.io RXTX library as a dependency. Supports Windows, Linux, OS X - x86 and x86_64.
The newest version!
package com.jamierf.rxtx;
public class UnsupportedArchitectureException extends RuntimeException {
private final String architecture;
public UnsupportedArchitectureException(final String architecture) {
super("Unsupported architecture: " + architecture);
this.architecture = architecture;
}
public String getArchitecture() {
return architecture;
}
}