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

org.freedesktop.dbus.exceptions.DBusConnectionException Maven / Gradle / Ivy

Go to download

Improved version of the DBus-Java library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/).

There is a newer version: 5.1.0
Show newest version
package org.freedesktop.dbus.exceptions;

/**
 * Thrown when something goes wrong with the connection to DBus.

* This includes find the connection parameter (e.g. machine-id file) or establishing the connection. * * @author David M. * @since v3.3.0 - 2021-01-27 */ public class DBusConnectionException extends DBusException { private static final long serialVersionUID = -1L; public DBusConnectionException() { super(); } public DBusConnectionException(String _message, Throwable _cause, boolean _enableSuppression, boolean _writableStackTrace) { super(_message, _cause, _enableSuppression, _writableStackTrace); } public DBusConnectionException(String _message, Throwable _cause) { super(_message, _cause); } public DBusConnectionException(String _message) { super(_message); } public DBusConnectionException(Throwable _cause) { super(_cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy