zaber.motion.exceptions.MotionLibException 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.
package zaber.motion.exceptions;
/**
* Errors propagated from the native library.
*/
public class MotionLibException extends RuntimeException {
public MotionLibException(String message) {
super(message);
}
public MotionLibException(Throwable e) {
super(e);
}
public MotionLibException(String message, Throwable e) {
super(message, e);
}
}