From 7b924b819f525cd870c1878b0ec3a02abd946354 Mon Sep 17 00:00:00 2001 From: amine1949 <74397650+amine1949@users.noreply.github.com> Date: Thu, 20 Apr 2023 15:00:38 +0000 Subject: [PATCH] Update 16_exceptions.php --- 16_exceptions.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/16_exceptions.php b/16_exceptions.php index 7a7c090..d103109 100644 --- a/16_exceptions.php +++ b/16_exceptions.php @@ -3,7 +3,9 @@ /* ----------- Exceptions ----------- */ /* - PHP has an exception model similar to that of other programming languages. An exception can be thrown, and caught ("catched") within PHP. Code may be surrounded in a try block, to facilitate the catching of potential exceptions. Each try must have at least one corresponding catch or finally block. + PHP has an exception model similar to that of other programming languages. + An exception can be thrown, and caught ("catched") within PHP. Code may be surrounded in a try block, to facilitate the catching of potential exceptions. + Each try must have at least one corresponding catch or finally block. */ function inverse($x) { @@ -42,4 +44,4 @@ function inverse($x) { } -echo 'Hello World'; \ No newline at end of file +echo 'Hello World';