public Usuario(String nome, String email, String endereco, String senha, String login)
     throws LoggerException {
   setNome(nome);
   setEmail(email);
   setEndereco(endereco);
   setSenha(senha);
   setLogin(login);
   this.listaDeCaronas = new LinkedList<Carona>();
   this.listaDeSolicitacaoDeVagas = new LinkedList<SolicitacaoDeVaga>();
   this.listaDeInteresses = new LinkedList<Interesse>();
   this.listaDeMensagens = new LinkedList<String>();
   this.Reviews = new LinkedList<String>();
   this.caronasSeguras = 0;
   this.caronaNaoFuncionaram = 0;
   this.faltasEmVagas = 0;
   this.presencaEmVagas = 0;
 }