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

com.neuronrobotics.sdk.common.MissingNativeLibraryException Maven / Gradle / Ivy

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