![JAR search and dependency download from the Maven repository](/logo.png)
org.sputnikdev.bluetooth.manager.BluetoothInteractionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluetooth-manager Show documentation
Show all versions of bluetooth-manager Show documentation
A library/framework for managing bluetooth adapters, bluetooth devices, GATT services and characteristics
package org.sputnikdev.bluetooth.manager;
/**
* This exception happens during interactions with bluetooth governors that require a communication
* with physical devices.
*
* @author Vlad Kolotov
*/
public class BluetoothInteractionException extends RuntimeException {
public BluetoothInteractionException() { }
public BluetoothInteractionException(String message) {
super(message);
}
public BluetoothInteractionException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy