org.freedesktop.dbus.exceptions.FatalDBusException 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;
public class FatalDBusException extends DBusException implements FatalException {
private static final long serialVersionUID = -3461692622913793488L;
public FatalDBusException(String _message, Throwable _cause) {
super(_message, _cause);
}
public FatalDBusException(Throwable _cause) {
super(_cause);
}
public FatalDBusException(String _message) {
super(_message);
}
}