I'm working with Akka / Java
A reference to an actor that does not exist, simply does returns exception and / or does not know how to capture information that the actor does not exist in the actor system.
ActorSelection register = null;
register = actorSystem.actorSelection("akka://default/user/ATOR-NAO-EXISTE");
I also noticed that the register path is akka://default/
is not complete.
This actor does not exist, but also does not generate errors.
How do I proceed?