public void Editar(Serie serie) { try { serie.Validacao(); if (!_repositorioSerie.GetByName(serie)) { _repositorioSerie.Editar(serie); } else { throw new Exception("A série já existe!"); } } catch (Exception ex) { throw new Exception(ex.Message); } }