alguem pode me ajudar ? esta dando esse erro abaixo quando vou compilar
C:\Users\Fabio\Fatec\DP\Java>javac TestaPessoa.java
TestaPessoa.java:13: cannot find symbol
symbol : constructor Pessoa()
location: class Pessoa
Pessoa pessoa = new Pessoa();
^
1 error
public class TestaPessoa{
public static void main(String [] mamao){
Pessoa pessoa = new Pessoa();
Scanner recebe = new Scanner(System.in);
//JOptionPane.showInputDialog(null,"Digite Seu Nome");
System.out.println("Digite Seu nome: ");
String nome = recebe.next();
}
}