de.swiesend.secretservice.errors.NoSuchObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secret-service Show documentation
Show all versions of secret-service Show documentation
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);
}
}