The current best solution is: ``` elixir def handle_message(message) try do :a + 1 rescue e -> # do soemthing raise e end end ``` @snehaso suggested that we could have an `on_uncought_exception` handler. I think that sounds good ^ 👍
The current best solution is:
@snehaso suggested that we could have an
on_uncought_exceptionhandler.I think that sounds good ^ 👍