Changes between Version 10 and Version 11 of GoodCodeExamples


Ignore:
Timestamp:
05/20/09 15:21:26 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoodCodeExamples

    v10 v11  
    6464                } 
    6565}}} 
     66 * try-catch-finally... The same as the above as spacing and etc... 
     67{{{ 
     68                try { 
     69                        // some code 
     70                } catch (Exception e) { 
     71                        // handle exception 
     72                } finally { 
     73                        // some stuff 
     74                } 
     75}}}