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

de.swiesend.secretservice.errors.NoSuchObject Maven / Gradle / Ivy

Go to download

A Java library for storing secrets in the gnome-keyring over the DBus. Simply set and get passwords in a gnome linux system.

The newest version!
package de.swiesend.secretservice.errors;

/**
 * No such item or collection exists.
 *
 * 

org.freedesktop.Secret.Error.NoSuchObject

*/ public class NoSuchObject extends Exception { public NoSuchObject() { } public NoSuchObject(String message) { super(message); } public NoSuchObject(String message, Throwable cause) { super(message, cause); } public NoSuchObject(Throwable cause) { super(cause); } public NoSuchObject(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy