I'm curious how the following is possible.
catch (Exception e) {
e.printStackTrace();
}
When I debug my code he jumps into the catch blog - so far so good - but than i check what kind of exception it is, and it is e = null?!
How is that even possible? I have an exception but the exception is null?
Greetings,