Vérification d'erreur PHP

try
{
	//Php code
}
catch(Eception $e)
{
	echo $e->getMessage();
  //This will disply error 
}
MR. D