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

com.jamierf.rxtx.UnsupportedArchitectureException Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy