Olá, estou aplicando exceções no meu código, mas to com um errinho aparentemente básico, mas não consigo encontrar o problema, mesmo comparando com outro código.
ERRO:
ShowTime.java:23: error: cannot find symbol
System.out.println("\nCPF: "+b1.getCpf());
^
symbol: method getCpf()
location: variable b1 of type Banda
1 error
CÓDIGO QUE APONTA O ERRO:
public class ShowTime extends Banda {
public static void main(String arg[]){
Entrada entrada = new Entrada();
Integrante integran = new Integrante();
Banda b1 = new ImplementsBanda();
b1.impInicio();
//============================================================================
try{
b1.setCpf(Integer.parseInt(entrada.entDados("\nInforme seu CPF: “)));
System.out.println(”\nCPF: "+b1.getCpf());
}
catch(InvalidCpfException nfe){
System.out.println("\n CPF INVALIDO!!!");
}
}
}