Created
          March 7, 2012 15:08 
        
      - 
      
 - 
        
Save lauripiispanen/1993705 to your computer and use it in GitHub Desktop.  
    Groovy TryCatch class
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public static def _try(attempt) { | |
| return new TryCatch(attempt: attempt) | |
| } | |
| public static class TryCatch { | |
| def attempt | |
| public def _catch(clos) { | |
| try { | |
| return attempt(); | |
| } catch (Exception e) { | |
| return clos(e); | |
| } | |
| } | |
| public def getCatch() { | |
| return _catch { null } | |
| } | |
| } | |
| /* USAGE */ | |
| def caption = _try { very.long.gpath.find {it.name == "expression"}?.with?.array.operation[0] }._catch { "" } | |
| // null default | |
| [ | |
| width: _try { attrs.width as int }.catch, | |
| height: _try { attrs.height as int }.catch, | |
| ] | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
Did cross my mind. Working on it... ;)