Input
Output
<?php try { echo "Trying...<br>"; throw new Exception("Something went wrong"); } catch (Exception $e) { echo "Caught: " . $e->getMessage() . "<br>"; } finally { echo "This will always run."; } ?>