Message d'exception PHP

try {
    throw new Exception("Some error message");
} catch(Exception $e) {
    echo $e->getMessage();
}
Fahim Foysal