Browse by Tags
Sorry, but there are no more tags available to filter with.
-
-
e is not enough... usually handle event as an “e”, and exceptions as an “ex” ...sorry, it too obvious ;) -f.
-
-
You should know about the try{}catch{} block. But did you know that you can use a try{}finally{} block? So when an error is raised, you are sure that the statements in the finally block are executed. -f.
-
-
Why you should not use it: the reason is simple, you loose all the stack trace. But what is the good way to bubble exceptions? Like that: ... }catch(Exception ex){ throw; // Here the catched exception will be bubble } -f.