public class SuperSavings extends SavingsAccount { public SuperSavings(String aName) { super(aName); } public SuperSavings() { super(""); } public void withdraw(float amount) { /* Do nothing */ } }