Ao executar o código na ferramenta de execução do Alura, está dando "Exception in thread "main" java.lang.NullPointerException: " na linha que lanço uma NullPointerException
public Aluno(String nome, int numeroMatricula) {
if(nome == null){
throw new NullPointerException("nome não pode ser nulo");
}
this.nome = nome;
this.numeroMatricula = numeroMatricula;
}