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

org.freedesktop.dbus.exceptions.DBusException 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;

/**
 * An exception within DBus.
 */
public class DBusException extends Exception {
    private static final long serialVersionUID = -1L;

    /**
    * Create an exception with the specified message
    * @param message message
    */
    public DBusException(String message) {
        super(message);
    }

    public DBusException() {
        super();
    }

    public DBusException(String _message, Throwable _cause, boolean _enableSuppression, boolean _writableStackTrace) {
        super(_message, _cause, _enableSuppression, _writableStackTrace);
    }

    public DBusException(String _message, Throwable _cause) {
        super(_message, _cause);
    }

    public DBusException(Throwable _cause) {
        super(_cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy