Exception handling syntax: Difference between revisions

Content deleted Content added
Line 119:
 
===[[Java (programming language)|Java]]===
<source lang=java>
try {
// Normal execution path
} catch (ExampleException ee) {
// deal with the ExampleException
} finally {
// This optional section is executed upon termination of any of the try or catch blocks above
}
</source>
 
=== [[Objective-C]] ===