Raising an Exception
Learn how to handle and implement exceptions in Elixir.
We'll cover the following...
Elixir (like Erlang) takes the view that errors should normally be fatal to the processes in which they occur. A typical Elixir application’s design involves many processes, which means the effects of an error will be localized. A supervisor will detect the failing process, and the restart will be handled at that ...