org.freedesktop.dbus.exceptions.NotConnected Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbus-java-core Show documentation
Show all versions of dbus-java-core Show documentation
Improved version of the DBus-Java library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/).
package org.freedesktop.dbus.exceptions;
import org.freedesktop.dbus.interfaces.FatalException;
/**
* Thrown if a DBus action is called when not connected to the Bus.
*/
public class NotConnected extends DBusExecutionException implements FatalException {
private static final long serialVersionUID = -3566138179099398537L;
public NotConnected(String _message) {
super(_message);
}
}