zaber.motion.exceptions.UnknownRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of motion-library Show documentation
Show all versions of motion-library Show documentation
A library that aims to provide easy-to-use API for communication with Zaber devices using Zaber ASCII Protocol.
// ===== THIS FILE IS GENERATED FROM A TEMPLATE ===== //
// ============== DO NOT EDIT DIRECTLY ============== //
package zaber.motion.exceptions;
/**
* Used for internal error handling. Indicates mixed library binary files. Reinstall the library.
*/
public class UnknownRequestException extends MotionLibException {
public UnknownRequestException(String message) {
super(message);
}
}