net.east301.keyring.PasswordRetrievalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-keyring Show documentation
Show all versions of java-keyring Show documentation
A Java library to store password securely
The newest version!
/**
* @author $Author: east301 $
* @date $Date: 2012/10/21 11:18:21 $
* @version $Revision: fb93b8608b64 $
*/
package net.east301.keyring;
/**
* Represents an error while retrieving password
*/
public class PasswordRetrievalException extends Exception {
/**
* Initializes an instance of PasswordRetrievalException
*
* @param message Error message
*/
public PasswordRetrievalException(String message) {
super(message);
}
} // class PasswordRetrievalException