Hi, Why can not catch exception in gen_server init callback function? init([]) -> erlang:error(myerror), {ok, #state{}}. Ex = (catch myserver:start_link()). process is terminated by exception myerror, but Ex is still unbound. Why?