So everything but the getCurrencyName() task verifies. I cant find my error, I know its there but I think i've been looking at it too long...
package com.codegym.task.task14.task1417;
public class USD extends Money{
public USD (double amount){
super(amount);
}
public String getCurrencyName(){return "USD";}
}