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

zaber.motion.exceptions.LibraryIntegrationException Maven / Gradle / Ivy

Go to download

A library that aims to provide easy-to-use API for communication with Zaber devices using Zaber ASCII Protocol.

There is a newer version: 6.7.0
Show newest version
package zaber.motion.exceptions;

public final class LibraryIntegrationException extends RuntimeException {

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

    public LibraryIntegrationException(Throwable e) {
        super(e);
    }

    public LibraryIntegrationException(String message, Throwable e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy