Both try/rescue
and try/catch
are error handling techniques in Elixir. According the corresponding chapter in the introduction guide.
Errors can be rescued using the
try/rescue
construct
On the other hand,
throw
andcatch
are reserved for situations where it is not possible to retrieve a value unless by usingthrow
andcatch
.
I have a brief understanding that rescue
is for errors. While catch
is for any value.
However,
throw
and catch
'?It's a good question.After research a bit.
What is the differences between them in details?
José's answer:
Mainly, you should use
throw
for control-flow and reserveraise
for errors, which happens on developer mistakes or under exceptional circumstances.In Elixir, this distinction is rather theoretical, but they matter in some languages like Ruby, where using errors/exceptions for control-flow is expensive because creating the exception object and backtrace is expensive.
Please check this answer Which situations require throw catch in Elixir
Shortly:
raise/rescue
Consider raise/rescue to be explicitly about exception handling (some unexpected situation like programmer errors, wrong environment, etc).
throw/catch
Is useful in places where you have expected failures. Classic examples are:
The last one:
Let's say you are trying to running some code from a process that is supervised by a Supervisor
but the process dies for an unexpected reason.
try do IO.inspect MayRaiseGenServer.maybe_will_raise rescue RuntimeError -> IO.puts "there was an error" end
MayRaiseGenServer
is supervised by a Supervisor
and for some reason an error was raised:
try do IO.inspect MayRaiseGenServer.maybe_will_raise # <- Code after this line is no longer executed
And then you can come up with using catch an exception here:
try do IO.inspect MayRaiseGenServer.maybe_will_raise catch :exit, _ -> IO.puts "there was an error" end
Ok.Hope that clarify enough what we are looking for.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With