Skip to content

Commit

Permalink
Adição das alterações sugeridas na issue #432
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielPintoSouza committed May 27, 2024
1 parent 8a206de commit 09c58c7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dao/AvisoDAO.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ public function cadastrar(Aviso $aviso)
$this->pdo->rollBack();
}
} catch (PDOException $e) {
$e->getMessage();
echo 'Erro ao cadastrar uma intercorrência no banco de dados: '.$e->getMessage();
throw $e;
}
}

Expand All @@ -69,7 +70,7 @@ public function procuraPorID($id)
$resultado = $stmt->fetch(PDO::FETCH_ASSOC);
return $resultado;
} catch (PDOException $e) {
$e->getMessage();
echo 'Erro ao procurar uma intercorrência com o id fornecido: '.$e->getMessage();
}
}
}

0 comments on commit 09c58c7

Please sign in to comment.