diff --git a/Error-handling.md b/Error-handling.md index 0fb169e..23ec4a8 100644 --- a/Error-handling.md +++ b/Error-handling.md @@ -5,7 +5,7 @@ When control flow meet `throw` statement, program execution is immediately inter and Execution Error is raised with message passed to `throw` statement. Example: -``` +```php function divide(a: int, b: int) { if (b == 0) { throw "You are trying to divide by 0!";