What is the difference between

try { ... }
catch{ throw }

and

try{ ... }
catch(Exception e) {throw new Exception(e.message) }

regardless that the second shows a message.

12 Answers
12

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *