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';