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

au.net.causal.projo.prefs.security.UserAbortedEnteringPasswordException Maven / Gradle / Ivy

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy