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

org.sputnikdev.bluetooth.manager.BluetoothInteractionException Maven / Gradle / Ivy

Go to download

A library/framework for managing bluetooth adapters, bluetooth devices, GATT services and characteristics

There is a newer version: 1.5.3
Show newest version
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