Forgive me for my ignorance, while perusing a few elixir/phoenix codes, I came across portions where rescue and catch were being used without a corresponding try block. Is this a syntactic sugar which implicitly have a try block?, does the community frown upon using it as I’ve read a few elixir books but never encountered the construct. IMHO it looks cleaner to me. Thank you.
def testing_rescue do
raise "You need to be rescue"
rescue
_ -> "I've been rescued by elixirforum"
end






















