WrongPasswordException.java :  » Development » jfritz-0.7.2 » de » moonflower » jfritz » exceptions » Java Open Source

Java Open Source » Development » jfritz 0.7.2 
jfritz 0.7.2 » de » moonflower » jfritz » exceptions » WrongPasswordException.java
/*
 * $Id: WrongPasswordException.java,v 1.2 2005/07/24 06:06:43 jfahrner Exp $
 * 
 * Created on 10.04.2005
 */

package de.moonflower.jfritz.exceptions;

/**
 * thrown when the web admin password of the fritz box is invalid
 * @author Arno Willig
 *
 */
public class WrongPasswordException extends Exception {
  private static final long serialVersionUID = 1;
    public WrongPasswordException() {
        super();
    }
    public WrongPasswordException(String s) {
        super(s);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.