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

org.subethamail.smtp.auth.LoginFailedException Maven / Gradle / Ivy

The newest version!
package org.subethamail.smtp.auth;

/**
 * Exception expected to be thrown by a validator (i.e UsernamePasswordValidator)
 *
 * @author Marco Trevisan 
 */
@SuppressWarnings("serial")
public class LoginFailedException extends Exception
{

	/** Creates a new instance of LoginFailedException */
	public LoginFailedException()
	{
		super("Login failed.");
	}

	/** Creates a new instance of LoginFailedException */
	public LoginFailedException(String msg)
	{
		super(msg);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy