Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

mode name
-rw-r--r-- README.md
-rw-r--r-- errors1.rs
-rw-r--r-- errors2.rs
-rw-r--r-- errors3.rs
-rw-r--r-- errors4.rs
-rw-r--r-- errors5.rs
-rw-r--r-- errors6.rs
README

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