
com.neuronrobotics.sdk.common.MissingNativeLibraryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-bowler Show documentation
Show all versions of java-bowler Show documentation
A command line utility for accesing the bowler framework.
The newest version!
package com.neuronrobotics.sdk.common;
// TODO: Auto-generated Javadoc
/**
* The Class MissingNativeLibraryException.
*/
public class MissingNativeLibraryException extends RuntimeException {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 1L;
/** The message. */
private String message;
/**
* Instantiates a new connection unavailable exception.
*
* @param message the message
*/
public MissingNativeLibraryException(String message) {
this.message = message;
Log.warning(message);
}
/* (non-Javadoc)
* @see java.lang.Throwable#getMessage()
*/
public String getMessage() {
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy