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

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

import java.io.IOException;

/**
 * Exception which indicates a terminated connection.
 *
 * @author hypfvieh
 * @since v4.2.2 - 2023-02-01
 */
public class SocketClosedException extends IOException {
    private static final long serialVersionUID = 1L;

    public SocketClosedException() {
        super();
    }

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

    public SocketClosedException(String _message) {
        super(_message);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy