Exception handling syntax: Difference between revisions

Content deleted Content added
m clean up
Java: Typo
Line 454:
// Always run when leaving the try block (including finally clauses), regardless of whether any exceptions were thrown or whether they were handled.
// Often used to clean up and close resources such a file handles.
// May nonot be run when System.exit() is called and in other system-wide exceptional conditions (e.g. power loss).
}
</syntaxhighlight>