org.bluez.exceptions.mesh.BluezMeshNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluez-dbus Show documentation
Show all versions of bluez-dbus Show documentation
Java native bluetooth library which uses bluez via dbus (linux only)
The newest version!
package org.bluez.exceptions.mesh;
import org.freedesktop.dbus.exceptions.DBusException;
@SuppressWarnings("serial")
public class BluezMeshNotFoundException extends DBusException {
public BluezMeshNotFoundException(String _message) {
super(_message);
}
}