diff --git a/data/part-11/3-exceptions.md b/data/part-11/3-exceptions.md index c1c10ce1..3600f569 100644 --- a/data/part-11/3-exceptions.md +++ b/data/part-11/3-exceptions.md @@ -27,7 +27,7 @@ Some exceptions we have to always prepare for, such as errors when reading from ## Handling exceptions -We use the `try {} catch (Exception e) {}` block structure to handle exceptions. The keyword `try` starts a block containing the code which *might* throw an exception. the block starting with the keyword `catch` defines what happens if an exception is thrown in the `try` block. The keyword `catch` is followed by the type of the exception handled by that block, for example "all exceptions" `catch (Exception e)`. +We use the `try {} catch (Exception e) {}` block structure to handle exceptions. The keyword `try` starts a block containing the code which *might* throw an exception. The block starting with the keyword `catch` defines what happens if an exception is thrown in the `try` block. The keyword `catch` is followed by the type of the exception handled by that block, for example "all exceptions" `catch (Exception e)`. ```java