/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package neembuu.uploader.exceptions.accounts; import java.util.logging.Level; import java.util.logging.Logger; import neembuu.uploader.translation.Translation; import neembuu.uploader.exceptions.NUException; /** * Invalid user exception: user is incorrect. * @author davidepastore */ public class NUInvalidUserException extends NUAccountException{ /** * Constructs an instance of * <code>NUInvalidUserException</code> with the username and the hostname. * * @param userName the username. * @param hostName the hostname. */ public NUInvalidUserException(String userName, String hostName) { super(NUException.INVALID_USER); this.hostName = hostName; this.userName = userName; } @Override public void printError() { Logger.getLogger(getClass().getName()).log(Level.SEVERE, this.getMessage()); showMessageDialog( "<html><b>" + userName+ ":<br/>"+Translation.T(this.getMessage())+"</html>", this.hostName); } }