au.net.causal.projo.prefs.security.UserAbortedEnteringPasswordException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of projo Show documentation
Show all versions of projo Show documentation
API for binding preferences to Java classes.
The newest version!
package au.net.causal.projo.prefs.security;
/**
* Thrown from the {@link SourcedByteEncrypter} when the user aborted entering a password necessary for encryption or decryption.
*
* @author prunge
*/
public class UserAbortedEnteringPasswordException extends RuntimeException
{
/**
* Creates a UserAbortedEnteringPasswordException
.
*/
public UserAbortedEnteringPasswordException()
{
}
/**
* Creates a UserAbortedEnteringPasswordException
with a detail message.
*
* @param message the detail message.
*/
public UserAbortedEnteringPasswordException(String message)
{
super(message);
}
}