rustlings/exercises/error_handling
huganardo 7da4ad469a First commit updating my worked solution so far
This commit is mainly to test to see if the readme.md updates when I change it 👍
2023-07-31 15:37:06 +10:00
..
errors1.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
errors2.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
errors3.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
errors4.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
errors5.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
errors6.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
README.md docs(error_handling): resolve markdown linter warnings 2023-03-29 21:13:27 +03:30

Error handling

Most errors aren’t serious enough to require the program to stop entirely. Sometimes, when a function fails, it’s for a reason that you can easily interpret and respond to. For example, if you try to open a file and that operation fails because the file doesn’t exist, you might want to create the file instead of terminating the process.

Further information